(First time programming in PHP. Had some help. Need a bit more.)
Goal:
Pull the lastContactDate from a given email address from my gmail account. Hoping to answer the question, "When was the last time I contacted [Person]"
What I've done so far:
- Connected to gmail using imap (inbox only)
- Grabbed the date and time
- Printed the person's name and timestamp.
What I can't do:
- Scour emails for lastContactDate that have been archived (I'm an inbox=0 guy)
Notes:
- The code is rough, but functional. The php should really be separated onto different pages, but this is first attempt. Thanks in advance for any help!
- Loving programming, btw. I did a little @edw519 dance more than once the last two days.
Research:
- I think that messing with the params for imap_open and imap_search is probably my best bet, but not sure.
- Been using these two pages heavily:
- http://php.net/manual/en/function.imap-open.php
- http://php.net/manual/en/function.imap-search.php
Code used thus far:
/* connect to gmail */
$gmailhostname = '{imap.gmail.com:993/imap/ssl}';
$gmailusername = "___@gmail.com";
$gmailpassword = "___";
/* try to connect */
$conn = imap_open($gmailhostname,$gmailusername,$gmailpassword) or die('Cannot connect to Gmail: ' . imap_last_error());
$query = mysql_query("SELECT * FROM users");
while($row = mysql_fetch_array($query))
{
$findemail = $row["email"];
/* grab emails */
$emails = imap_search($conn,'FROM "'.$findemail.'"');
/* if emails are returned, cycle through each... */
if ($emails) {
/* begin output var */
$output = '';
/* put the newest emails on top */
rsort($emails);
/* for 5 emails... */
$emails = array_slice($emails,0,1);
foreach ($emails as $email_number) {
/* get information specific to this email */
$overview = imap_fetch_overview($conn,$email_number,0);
$message = imap_fetchbody($conn,$email_number,2);
/* output the email header information */
/*
$output.= '<div class="toggler '.($overview[0]->seen ? 'read' : 'unread').'">';
$output.= '<span class="subject">'.$overview[0]->subject.'</span> ';
$output.= '<span class="from">'.$overview[0]->from.'</span>';
*/
$output.= '<span class="from">'.$overview[0]->from.'</span> ';
$output.= '<span class="date">on '.$overview[0]->date.'</span> <br /><br />';
mysql_query("UPDATE users SET lastContactDate = '".$overview[0]->date."' WHERE email = '".$findemail."'") or die(mysql_error());
/* output the email body */
/* $output.= '<div class="body">'.$message.'</div>'; */
}
echo $output;
}
}
/* close the connection */
imap_close($conn);
?>