這篇文章主要為大家詳細介紹了PHP receiveMail實現收郵件功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下
用PHP來發郵件,相信大家都不陌生,但讀取收件匣的話,接觸就少了,這次總結下自己的經驗,希望可以幫助大家.
注意:
#1.PHP讀取收件匣主要是利用imap擴充,所以在使用以下方法前,必須開啟imap擴充模組的支援.
2.此方法支援中文,不會亂碼,需要保持所有文件的編碼的一致性
1.文件結構
2.郵件類別 ./mailreceived/receiveMail.class.php
./mailreceived/receiveMail.class.php 檔案內容如下:
<?php // Main ReciveMail Class File - Version 1.0 (03-06-2015) /* * File: recivemail.class.php * Description: Reciving mail With Attechment * Version: 1.1 * Created: 03-06-2015 * Author: Sara Zhou */ class receiveMail { var $server=''; var $username=''; var $password=''; var $marubox=''; var $email=''; function receiveMail($username,$password,$EmailAddress,$mailserver='localhost',$servertype='pop',$port='110',$ssl = false) //Constructure { if($servertype=='imap') { if($port=='') $port='143'; $strConnect='{'.$mailserver.':'.$port. '}INBOX'; } else { $strConnect='{'.$mailserver.':'.$port. '/pop3'.($ssl ? "/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) ? htmlspecialchars($name) : str_replace('.' . $file['extension'], '', $name); $file['size'] = $struckture->parts[$key]->dparameters[1]->value; // $file['tmpname'] = $struckture->parts[$key]->dparameters[0]->value; if(@$struckture->parts[$key]->disposition=="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) ? htmlspecialchars($name) : str_replace('.' . $file['extension'], '', $name); $file['size'] = $struckture->parts[$key]->parts[$keyb]->dparameters[1]->value; // $file['tmpname'] = $struckture->parts[$key]->dparameters[0]->value; $file['type'] = 0; $files[] = $file; $partnro = ($key+1).".".($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 src="/static/imghwm/default1.png" data-src="(.*?)" class="lazy" .*? alt="PHP receiveMail實作收郵件功能php實例" >/', $body, $matches); if (!isset($matches[0])) return; foreach ($matches[0] as $img) { // replace image web path with local path preg_match('//', $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 src="/static/imghwm/default1.png" data-src="(.*?)" class="lazy" alt="" style="max-width:90%" />', $body); } } return $body; } function deleteMails($mid) // Delete That Mail { if(!$this->marubox) return false; imap_delete($this->marubox,$mid); } function close_mailbox() //Close Mail Box { if(!$this->marubox) return false; imap_close($this->marubox,CL_EXPUNGE); } //移动邮件到指定分组 function move_mails($msglist,$mailbox) { if(!$this->marubox) return false; imap_mail_move($this->marubox, $msglist, $mailbox); } function creat_mailbox($mailbox) { if(!$this->marubox) return false; //imap_renamemailbox($imap_stream, $old_mbox, $new_mbox); imap_create($this->marubox, $mailbox); } /* * decode_mime()转换邮件标题的字符编码,处理乱码 */ function decode_mime($str){ $str=imap_mime_header_decode($str); return $str[0]->text; echo "str";print_r($str); if ($str[0]->charset!="default") {echo "==".$str[0]->text; return iconv($str[0]->charset,'utf8',$str[0]->text); } else { return $str[0]->text; } } /** * Set path name of the uploaded file to be saved. * * @param int $fileID * @param string $extension * @access public * @return string */ public function setPathName($fileID, $extension) { return date('Ym/dHis', time()) . $fileID . mt_rand(0, 10000) . '.' . $extension; } } ?>
# 3.控制層./mailreceived/mailControl.php
./mailreceived/mailControl.php 內容如下:
<? /* * File: mailControl.php * Description: Received Mail Example * Created: 03-06-2015 * Author: Sara Zhou */ @header('Content-type: text/html;charset=UTF-8'); error_reporting(0); ignore_user_abort(); // run script in background set_time_limit(0); // run script forever date_default_timezone_set('Asia/Shanghai'); include("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 class="brush:php;toolbar:false">";print_r($res); //创建邮箱 // $obj->creatBox("readyBox"); ?>
#4 .訪問網址:http://localhost/test.cn/mailreceived/mailControl.php 即可
#以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持php中文網。
您可能感興趣的文章:
#laravel 5.4 vue vux element的環境搭配程序介紹php實例
#
以上是PHP receiveMail實作收郵件功能php實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

PHP在電子商務、內容管理系統和API開發中廣泛應用。 1)電子商務:用於購物車功能和支付處理。 2)內容管理系統:用於動態內容生成和用戶管理。 3)API開發:用於RESTfulAPI開發和API安全性。通過性能優化和最佳實踐,PHP應用的效率和可維護性得以提升。

PHP可以輕鬆創建互動網頁內容。 1)通過嵌入HTML動態生成內容,根據用戶輸入或數據庫數據實時展示。 2)處理表單提交並生成動態輸出,確保使用htmlspecialchars防XSS。 3)結合MySQL創建用戶註冊系統,使用password_hash和預處理語句增強安全性。掌握這些技巧將提升Web開發效率。

PHP和Python各有優勢,選擇依據項目需求。 1.PHP適合web開發,尤其快速開發和維護網站。 2.Python適用於數據科學、機器學習和人工智能,語法簡潔,適合初學者。

PHP仍然具有活力,其在現代編程領域中依然佔據重要地位。 1)PHP的簡單易學和強大社區支持使其在Web開發中廣泛應用;2)其靈活性和穩定性使其在處理Web表單、數據庫操作和文件處理等方面表現出色;3)PHP不斷進化和優化,適用於初學者和經驗豐富的開發者。

PHP在現代Web開發中仍然重要,尤其在內容管理和電子商務平台。 1)PHP擁有豐富的生態系統和強大框架支持,如Laravel和Symfony。 2)性能優化可通過OPcache和Nginx實現。 3)PHP8.0引入JIT編譯器,提升性能。 4)雲原生應用通過Docker和Kubernetes部署,提高靈活性和可擴展性。

PHP適合web開發,特別是在快速開發和處理動態內容方面表現出色,但不擅長數據科學和企業級應用。與Python相比,PHP在web開發中更具優勢,但在數據科學領域不如Python;與Java相比,PHP在企業級應用中表現較差,但在web開發中更靈活;與JavaScript相比,PHP在後端開發中更簡潔,但在前端開發中不如JavaScript。

PHP和Python各有優勢,適合不同場景。 1.PHP適用於web開發,提供內置web服務器和豐富函數庫。 2.Python適合數據科學和機器學習,語法簡潔且有強大標準庫。選擇時應根據項目需求決定。

PHP是一種廣泛應用於服務器端的腳本語言,特別適合web開發。 1.PHP可以嵌入HTML,處理HTTP請求和響應,支持多種數據庫。 2.PHP用於生成動態網頁內容,處理表單數據,訪問數據庫等,具有強大的社區支持和開源資源。 3.PHP是解釋型語言,執行過程包括詞法分析、語法分析、編譯和執行。 4.PHP可以與MySQL結合用於用戶註冊系統等高級應用。 5.調試PHP時,可使用error_reporting()和var_dump()等函數。 6.優化PHP代碼可通過緩存機制、優化數據庫查詢和使用內置函數。 7


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。

MantisBT
Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

SecLists
SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境