扩展PHP Gmail代码多个主题

时间:2019-06-23 14:54:47

标签: php html

我正在扩展此gmail代码,以捕获我的VPN的多个通知 第一主题:开始通知 第二主题:结束通知

我想添加多个主题,以捕获正文中的相同文本。

我尝试添加多行,但是如果有人可以帮助我,那就太好了。

/* connect to gmail */
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$username = 'SECURITY';
$password = 'SECURITY';
/* try to connect */
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());
/* grab emails */
$emails = imap_search($inbox,'SUBJECT "Notification" TEXT "TEXTHERE"');
/* if emails are returned, cycle through each... */
if($emails) {        
        /* begin output var */
        $output = '';        
        /* put the newest emails on top */
        rsort($emails);        
        /* for every email... */
        foreach($emails as $email_number) {                
                /* get information specific to this email */
                $overview = imap_fetch_overview($inbox,$email_number,0);
                $message = imap_fetchbody($inbox,$email_number,2);                
                /* output the email header information */
                $output.= '<span class="subject">'.$overview[0]->subject.'</span> ';
                $output.= '<span class="date">on '.$overview[0]->date.'</span>';

                /* output the email body */
                $output.= '<table> <tr> <td> '.$message.'</td> </tr> </table>';
}        
        echo strstr($output, '=0A', true);
}
imap_close($inbox);
?>```

0 个答案:

没有答案