I have send emails using SMTP gmail settings which is working fine and i fetched the emails using IMAP function of php and that also return listing of emails. Now i have list of emails with their uids. I want to send the reply to that received email. Below is my cakephp IMAP code :
public function listMessages($params=array()) {
$page = (isset($params['page'])) ? $params['page'] : 1;
$per_page = (isset($params['per_page'])) ? $params['per_page'] : 10;
$sort = (isset($params['sort'])) ? $params['sort'] : null;
$sorted = null;
$limit = ($per_page * $page);
$start = ($limit - $per_page) + 1;
$start = ($start < 1) ? 1 : $start;
$limit = (($limit - $start) != ($per_page-1)) ? ($start + ($per_page-1)) : $limit;
$info = imap_check($this->imapStream);
$limit = ($info->Nmsgs < $limit) ? $info->Nmsgs : $limit;
if(true === is_array($sort)) {
$sorting = array(
'direction' => array( 'asc' => 0,
'desc' => 1),
'by' => array( 'date' => SORTDATE,
'arrival' => SORTARRIVAL,
'from' => SORTFROM,
'subject' => SORTSUBJECT,
'size' => SORTSIZE));
$by = (true === is_int($by = $sorting['by'][$sort[0]]))
? $by
: $sorting['by']['date'];
$direction = (true === is_int($direction = $sorting['direction'][$sort[1]]))
? $direction
: $sorting['direction']['desc'];
$sorted = imap_sort($this->imapStream, $by, $direction);
$msgs = array_chunk($sorted, $per_page);
$msgs = $msgs[$page-1];
}
else
$msgs = range($start, $limit); //just to keep it consistent
$result = imap_fetch_overview($this->imapStream, implode($msgs, ','), 0);
if(false === is_array($result)) return false;
//sorting!
if(true === is_array($sorted)) {
$tmp_result = array();
foreach($result as $r)
$tmp_result[$r->msgno] = $r;
$result = array();
foreach($msgs as $msgno) {
$result[] = $tmp_result[$msgno];
}
}
$return = array('res' => $result,
'start' => $start,
'limit' => $limit,
'sorting' => array('by' => $sort[0], 'direction' => $sort[1]),
'total' => imap_num_msg($this->imapStream));
$return['pages'] = ceil($return['total'] / $per_page);
return $return;
}
I have made this functionality works. Just by adding "Re:" infront of subject before sending email. Gmail automatically consider as reply and continue on the same thread instead showing it as new separate email.