php imap 附件,使用IMAP和PHP保存附件服务器

我实际上能够通过以下方式让它完全符合我的要求:

function getFileExtension($fileName){

$parts=explode(".",$fileName);

return $parts[count($parts)-1];

}

$imap = imap_open($server, $username, $password) or die("imap connection error");

$message_count = imap_num_msg($imap);

for ($m = 1; $m <= $message_count; ++$m){

$header = imap_header($imap, $m);

//print_r($header);

$email[$m]['from'] = $header->from[0]->mailbox.'@'.$header->from[0]->host;

$email[$m]['fromaddress'] = $header->from[0]->personal;

$email[$m]['to'] = $header->to[0]->mailbox;

$email[$m]['subject'] = $header->subject;

$email[$m]['message_id'] = $header->message_id;

$email[$m]['date'] = $header->udate;

$from = $email[$m]['fromaddress'];

$from_email = $email[$m]['from'];

$to = $email[$m]['to'];

$subject = $email[$m]['subject'];

echo $from_email . '';

echo $to . '';

echo $subject . '';

$structure = imap_fetchstructure($imap, $m);

$attachments = array();

if(isset($structure->parts) && count($structure->parts)) {

for($i = 0; $i < count($structure->parts); $i++) {

$attachments[$i] = array(

'is_attachment' => false,

'filename' => '',

'name' => '',

'attachment' => ''

);

if($structure->parts[$i]->ifdparameters) {

foreach($structure->parts[$i]->dparameters as $object) {

if(strtolower($object->attribute) == 'filename') {

$attachments[$i]['is_attachment'] = true;

$attachments[$i]['filename'] = $object->value;

}

}

}

if($structure->parts[$i]->ifparameters) {

foreach($structure->parts[$i]->parameters as $object) {

if(strtolower($object->attribute) == 'name') {

$attachments[$i]['is_attachment'] = true;

$attachments[$i]['name'] = $object->value;

}

}

}

if($attachments[$i]['is_attachment']) {

$attachments[$i]['attachment'] = imap_fetchbody($imap, $m, $i+1);

if($structure->parts[$i]->encoding == 3) { // 3 = BASE64

$attachments[$i]['attachment'] = base64_decode($attachments[$i]['attachment']);

}

elseif($structure->parts[$i]->encoding == 4) { // 4 = QUOTED-PRINTABLE

$attachments[$i]['attachment'] = quoted_printable_decode($attachments[$i]['attachment']);

}

}

}

}

foreach ($attachments as $key => $attachment) {

$name = $attachment['name'];

$contents = $attachment['attachment'];

file_put_contents($name, $contents);

}

//imap_setflag_full($imap, $i, "\\Seen");

//imap_mail_move($imap, $i, 'Trash');

}

imap_close($imap);

?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值