下面我使用 PHP 的 imap 库循环浏览电子邮件。它有效,但我坚持保存邮件中的附件。
<?php
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$username = 'someemail@somedomain.com';
$password = 'somepassword';
/* try to connect */
$imap_connection = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());
/* grab emails */
$emails = imap_search($imap_connection,'ALL');
/* 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) {
$structure = imap_fetchstructure($imap_connection,$email_number);
if(isset($structure->parts) && count($structure->parts)){
for($i = 0; $i < count($structure->parts); $i++){
if(!empty($structure->parts[$i]->bytes)){
if(!empty($ifdparameters)){
echo "File: ----".$structure->parts[$i]->dparameters[0]->value;
// returns: testMeOut.jpg
}
}
} //eof $i loop
} //eof $structure->parts
} // eof foreach $emails
} // eof if($emails)
?>
我正在尝试了解如何将附件保存到服务器上的目录中。我知道:$structure->parts[$i]->dparameters[0]->value; 正在返回附件的名称。
我确定我需要使用 imap_fetchbody() 做一些事情,但我对在线阅读教程和 php 网站感到非常困惑。
谁能看到我关于如何从 $message 中保存附件的最后几个步骤?