用PHP来发邮件,相信大家都不陌生,但读取收件箱的话,接触就少了,这次总结下自己的经验,希望可以帮助大家.
注意:
1.PHP读取收件箱主要是利用imap扩展,所以在使用以下方法前,必须开启imap扩展模块的支持.
2.此方法支持中文,不会乱码,需要保持所有文件的编码的一致性
1.文件结构
2.邮件类 ./mailreceived/receiveMail.class.php
./mailreceived/receiveMail.class.php 文件内容如下:
<"/ssl" : "").'}INBOX'; } $this->server = $strConnect; $this->username = $username; $this->password = $password; $this->email = $EmailAddress; } function connect() //Connect To the Mail Box { $this->marubox=@imap_open($this->server,$this->username,$this->password); if(!$this->marubox) { return false; // echo "Error: Connecting to mail server"; // exit; } return true; } function getHeaders($mid) // Get Header info { if(!$this->marubox) return false; $mail_header=imap_header($this->marubox,$mid); $sender=$mail_header->from[0]; $sender_replyto=$mail_header->reply_to[0]; if(strtolower($sender->mailbox)!='mailer-daemon' && strtolower($sender->mailbox)!='postmaster') { $subject=$this->decode_mime($mail_header->subject); $ccList=array(); foreach ($mail_header->cc as $k => $v) { $ccList[]=$v->mailbox.'@'.$v->host; } $toList=array(); foreach ($mail_header->to as $k => $v) { $toList[]=$v->mailbox.'@'.$v->host; } $ccList=implode(",", $ccList); $toList=implode(",", $toList); $mail_details=array( 'fromBy'=>strtolower($sender->mailbox).'@'.$sender->host, 'fromName'=>$this->decode_mime($sender->personal), 'ccList'=>$ccList,//strtolower($sender_replyto->mailbox).'@'.$sender_replyto->host, 'toNameOth'=>$this->decode_mime($sender_replyto->personal), 'subject'=>$subject, 'mailDate'=>date("Y-m-d H:i:s",$mail_header->udate), 'udate'=>$mail_header->udate, 'toList'=>$toList//strtolower($mail_header->to[0]->mailbox).'@'.$mail_header->to[0]->host // 'to'=>strtolower($mail_header->toaddress) ); } return $mail_details; } function get_mime_type(&$structure) //Get Mime type Internal Private Use { $primary_mime_type = array("TEXT", "MULTIPART", "MESSAGE", "APPLICATION", "AUDIO", "IMAGE", "VIDEO", "OTHER"); if($structure->subtype && $structure->subtype!="PNG") { return $primary_mime_type[(int) $structure->type] . '/' . $structure->subtype; } return "TEXT/PLAIN"; } function get_part($stream, $msg_number, $mime_type, $structure = false, $part_number = false) //Get Part Of Message Internal Private Use { if(!$structure) { $structure = imap_fetchstructure($stream, $msg_number); } if($structure) { if($mime_type == $this->get_mime_type($structure)) { if(!$part_number) { $part_number = "1"; } $text = imap_fetchbody($stream, $msg_number, $part_number); if($structure->encoding == 3) { return imap_base64($text); // if ($structure->parameters[0]->value!="utf-8") // { // return imap_base64($text); // } // else // { // return imap_base64($text); // } } else if($structure->encoding == 4) { return iconv('gb2312','utf8',imap_qprint($text)); } else { return iconv('gb2312','utf8',$text); } } if($structure->type == 1) /* multipart */ { while(list($index, $sub_structure) = each($structure->parts)) { if($part_number) { $prefix = $part_number . '.'; } $data = $this->get_part($stream, $msg_number, $mime_type, $sub_structure, $prefix . ($index + 1)); if($data) { return $data; } } } } return false; } function getTotalMails() //Get Total Number off Unread Email In Mailbox { if(!$this->marubox) return false; // return imap_headers($this->marubox); return imap_num_recent($this->marubox); } function GetAttach($mid,$path) // Get Atteced File from Mail { if(!$this->marubox) return false; $struckture = imap_fetchstructure($this->marubox,$mid); $files=array(); if($struckture->parts) { foreach($struckture->parts as $key => $value) { $enc=$struckture->parts[$key]->encoding; //取邮件附件 if($struckture->parts[$key]->ifdparameters) { //命名附件,转码 $name=$this->decode_mime($struckture->parts[$key]->dparameters[0]->value); $extend =explode("." , $name); $file['extension'] = $extend[count($extend)-1]; $file['pathname'] = $this->setPathName($key, $file['extension']); $file['title'] = !empty($name) "ATTACHMENT") { $file['type'] = 1; } else { $file['type'] = 0; } $files[] = $file; $message = imap_fetchbody($this->marubox,$mid,$key+1); if ($enc == 0) $message = imap_8bit($message); if ($enc == 1) $message = imap_8bit ($message); if ($enc == 2) $message = imap_binary ($message); if ($enc == 3)//图片 $message = imap_base64 ($message); if ($enc == 4) $message = quoted_printable_decode($message); if ($enc == 5) $message = $message; $fp=fopen($path.$file['pathname'],"w"); fwrite($fp,$message); fclose($fp); } // 处理内容中包含图片的部分 if($struckture->parts[$key]->parts) { foreach($struckture->parts[$key]->parts as $keyb => $valueb) { $enc=$struckture->parts[$key]->parts[$keyb]->encoding; if($struckture->parts[$key]->parts[$keyb]->ifdparameters) { //命名图片 $name=$this->decode_mime($struckture->parts[$key]->parts[$keyb]->dparameters[0]->value); $extend =explode("." , $name); $file['extension'] = $extend[count($extend)-1]; $file['pathname'] = $this->setPathName($key, $file['extension']); $file['title'] = !empty($name) ".".($keyb+1); $message = imap_fetchbody($this->marubox,$mid,$partnro); if ($enc == 0) $message = imap_8bit($message); if ($enc == 1) $message = imap_8bit ($message); if ($enc == 2) $message = imap_binary ($message); if ($enc == 3) $message = imap_base64 ($message); if ($enc == 4) $message = quoted_printable_decode($message); if ($enc == 5) $message = $message; $fp=fopen($path.$file['pathname'],"w"); fwrite($fp,$message); fclose($fp); } } } } } //move mail to taskMailBox $this->move_mails($mid, $this->marubox); return $files; } function getBody($mid,&$path,$imageList) // Get Message Body { if(!$this->marubox) return false; $body = $this->get_part($this->marubox, $mid, "TEXT/HTML"); if ($body == "") $body = $this->get_part($this->marubox, $mid, "TEXT/PLAIN"); if ($body == "") { return ""; } //处理图片 $body=$this->embed_images($body,$path,$imageList); return $body; } function embed_images(&$body,&$path,$imageList) { // get all img tags preg_match_all('/<img.*"(.*"/', $img, $m); if (!isset($m[1])) continue; $arr = parse_url($m[1]); if (!isset($arr['scheme']) || !isset($arr['path']))continue; // if (!isset($arr['host']) || !isset($arr['path']))continue; if ($arr['scheme']!="http") { $filename=explode("@", $arr['path']); $body = str_replace($img, '<img alt="" src="/UploadFiles/2021-04-02/'.$path.$imageList[$filename[0]].'"><"receivemail.class.php"); class mailControl { //定义系统常量 //用户名 public $mailAccount = "123456@qq.com"; public $mailPasswd = "12345"; public $mailAddress = "123456@qq.com"; public $mailServer = "pop.qq.com"; public $serverType = "pop3"; public $port = "110"; public $now = 0; public $savePath = ''; public $webPath = "../upload/"; public function __construct() { $this->now = date("Y-m-d H:i:s",time()); $this->setSavePath(); } /** * mail Received()读取收件箱邮件 * * @param * @access public * @return result */ public function mailReceived() { // Creating a object of reciveMail Class $obj= new receivemail($this->mailAccount,$this->mailPasswd,$this->mailAddress,$this->mailServer,$this->serverType,$this->port,false); //Connect to the Mail Box $res=$obj->connect(); //If connection fails give error message and exit if (!$res) { return array("msg"=>"Error: Connecting to mail server"); } // Get Total Number of Unread Email in mail box $tot=$obj->getTotalMails(); //Total Mails in Inbox Return integer value if($tot < 1) { //如果信件数为0,显示信息 return array("msg"=>"No Message for ".$this->mailAccount); } else { $res=array("msg"=>"Total Mails:: $tot<br>"); for($i=$tot;$i>0;$i--) { $head=$obj->getHeaders($i); // Get Header Info Return Array Of Headers **Array Keys are (subject,to,toOth,toNameOth,from,fromName) //处理邮件附件 $files=$obj->GetAttach($i,$this->savePath); // 获取邮件附件,返回的邮件附件信息数组 $imageList=array(); foreach($files as $k => $file) { //type=1为附件,0为邮件内容图片 if($file['type'] == 0) { $imageList[$file['title']]=$file['pathname']; } } $body = $obj->getBody($i,$this->webPath,$imageList); $res['mail'][]=array('head'=>$head,'body'=>$body,"attachList"=>$files); // $obj->deleteMails($i); // Delete Mail from Mail box // $obj->move_mails($i,"taskMail"); } $obj->close_mailbox(); //Close Mail Box return $res; } } /** * creatBox * * @access public * @return void */ public function creatBox($boxName) { // Creating a object of reciveMail Class $obj= new receivemail($this->mailAccount,$this->mailPasswd,$this->mailAddress,$this->mailServer,$this->serverType,$this->port,false); $obj->creat_mailbox($boxName); } /** * Set save path. * * @access public * @return void */ public function setSavePath() { $savePath = "../upload/" . date('Ym/', $this->now); if(!file_exists($savePath)) { @mkdir($savePath, 0777, true); touch($savePath . 'index.html'); } $this->savePath = dirname($savePath) . '/'; } } $obj=new mailControl(); //收取邮件 $res=$obj->mailReceived(); echo "<pre>";print_r($res); //创建邮箱 // $obj->creatBox("readyBox"); ?>4.访问地址:http://localhost/test.cn/mailreceived/mailControl.php 即可
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
- 中国武警男声合唱团《辉煌之声1天路》[DTS-WAV分轨]
- 紫薇《旧曲新韵》[320K/MP3][175.29MB]
- 紫薇《旧曲新韵》[FLAC/分轨][550.18MB]
- 周深《反深代词》[先听版][320K/MP3][72.71MB]
- 李佳薇.2024-会发光的【黑籁音乐】【FLAC分轨】
- 后弦.2012-很有爱【天浩盛世】【WAV+CUE】
- 林俊吉.2012-将你惜命命【美华】【WAV+CUE】
- 晓雅《分享》DTS-WAV
- 黑鸭子2008-飞歌[首版][WAV+CUE]
- 黄乙玲1989-水泼落地难收回[日本天龙版][WAV+CUE]
- 周深《反深代词》[先听版][FLAC/分轨][310.97MB]
- 姜育恒1984《什么时候·串起又散落》台湾复刻版[WAV+CUE][1G]
- 那英《如今》引进版[WAV+CUE][1G]
- 蔡幸娟.1991-真的让我爱你吗【飞碟】【WAV+CUE】
- 群星.2024-好团圆电视剧原声带【TME】【FLAC分轨】