php mail class with readme

來源:互聯網
上載者:User

使用方法:

<?<br />Include “email.class”<br />$mail->setTo("a@a.com"); //收件者<br />$mail-> setCC("b@b.com,c@c.com"); //抄送<br />$mail-> setCC("d@b.com,e@c.com"); //秘密抄送<br />$mail->setFrom(“f@f.com”);//寄件者<br />$mail->setSubject(“主題”) ; //主題<br />$mail->setText(“文字格式設定”) ;//發送文字格式設定也可以是變數<br />$mail->setHTML(“html格式”) ;//發送html格式也可以是變數<br />$mail->setAttachments(“c:a.jpg”) ;//添加附件,需表明路徑<br />$mail->send(); //發送郵件<br />?> 

 

具體代碼: 

<?php<br />class Email {<br />//---設定全域變數<br />var $mailTo = ""; // 收件者<br />var $mailCC = ""; // 抄送<br />var $mailBCC = ""; // 秘密抄送<br />var $mailFrom = ""; // 寄件者<br />var $mailSubject = ""; // 主題<br />var $mailText = ""; // 文字格式設定的信件主體<br />var $mailHTML = ""; // html格式的信件主體<br />var $mailAttachments = ""; // 附件<br />/* 函數setTo($inAddress) :用於處理郵件的地址 參數 $inAddress<br />為包涵一個或多個字串,email地址變數,使用逗號來分割多個郵件地址<br />預設傳回值為true<br />**********************************************************/<br />function setTo($inAddress){<br />//--用explode()函數根據”,”對郵件地址進行分割<br />$addressArray = explode( ",",$inAddress);<br />//--通過迴圈對郵件地址的合法性進行檢查<br />for($i=0;$i<count($addressArray);$i++){ if($this->checkEmail($addressArray[$i])==false) return false; }<br />//--所有合法的email地址存入數組中<br />$this->mailTo = implode($addressArray, ",");<br />return true; }<br />/**************************************************<br />函數 setCC($inAddress) 設定抄送人郵件地址<br />參數 $inAddress 為包涵一個或多個郵件地址的字串,email地址變數,<br />使用逗號來分割多個郵件地址 預設傳回值為true<br />**************************************************************/<br />function setCC($inAddress){<br />//--用explode()函數根據”,”對郵件地址進行分割<br />$addressArray = explode( ",",$inAddress);<br />//--通過迴圈對郵件地址的合法性進行檢查<br />for($i=0;$i<count($addressArray);$i++){ if($this->checkEmail($addressArray[$i])==false) return false; }<br />//--所有合法的email地址存入數組中<br />$this->mailCC = implode($addressArray, ",");<br />return true; }<br />/***************************************************<br />函數setBCC($inAddress) 設定秘密抄送地址 參數 $inAddress 為包涵一個或多<br />個郵件地址的字串,email地址變數,使用逗號來分割多個郵件地址 預設傳回值為<br />true<br />******************************************/<br />function setBCC($inAddress){<br />//--用explode()函數根據”,”對郵件地址進行分割<br />$addressArray = explode( ",",$inAddress);<br />//--通過迴圈對郵件地址的合法性進行檢查<br />for($i=0;$i<count($addressArray);$i++)<br />{ if($this->checkEmail($addressArray[$i])==false)<br />return false;<br />}<br />//--所有合法的email地址存入數組中<br />$this->mailBCC = implode($addressArray, ",");<br />return true;<br />}<br />/*****************************************************************<br />函數setFrom($inAddress):設定寄件者地址 參數 $inAddress 為包涵郵件<br />地址的字串預設傳回值為true<br />***************************************/<br />function setFrom($inAddress){<br />if($this->checkEmail($inAddress)){<br />$this->mailFrom = $inAddress;<br />return true;<br />} return false; }<br />/**********************<br />函數 setSubject($inSubject) 用於設定郵件主題參數$inSubject為字串,<br />預設返回的是true<br />*******************************************/<br />function setSubject($inSubject){<br />if(strlen(trim($inSubject)) > 0){<br />$this->mailSubject = ereg_replace( "n", "",$inSubject);<br />return true; }<br />return false; }<br />/****************************************************<br />函數setText($inText) 設定文字格式設定的郵件主體參數 $inText 為常值內容默<br />認傳回值為true<br />****************************************/<br />function setText($inText){<br />if(strlen(trim($inText)) > 0){<br />$this->mailText = $inText;<br />return true; }<br />return false;<br />}<br />/**********************************<br />函數setHTML($inHTML) 設定html格式的郵件主體參數$inHTML為html格式,<br />預設傳回值為true<br />************************************/<br />function setHTML($inHTML){<br />if(strlen(trim($inHTML)) > 0){<br />$this->mailHTML = $inHTML;<br />return true; }<br />return false; }<br />/**********************<br />函數 setAttachments($inAttachments) 設定郵件的附件 參數$inAttachments<br />為一個包涵目錄的字串,也可以包涵多個檔案用逗號進行分割 預設傳回值為true<br />*******************************************/<br />function setAttachments($inAttachments){<br />if(strlen(trim($inAttachments)) > 0){<br />$this->mailAttachments = $inAttachments;<br />return true; }<br />return false; }<br />/*********************************<br />函數 checkEmail($inAddress) :這個函數我們前面已經調用過了,主要就是<br />用於檢查email地址的合法性<br />*****************************************/<br />function checkEmail($inAddress){<br />return (ereg( "^[^@ ]+@([a-zA-Z0-9-]+.)+([a-zA-Z0-9-]{2}|net|com|gov|mil|org|edu|int)$",$inAddress));<br />}<br />/*************************************************<br />函數loadTemplate($inFileLocation,$inHash,$inFormat) 讀取臨時檔案並且<br />替換無用的資訊參數$inFileLocation用於定位檔案的目錄<br />$inHash 由於儲存臨時的值 $inFormat 由於放置郵件主體<br />***********************************************************/<br />function loadTemplate($inFileLocation,$inHash,$inFormat){<br />/* 比如郵件內有如下內容: Dear ~!UserName~,<br />Your address is ~!UserAddress~ */<br />//--其中”~!”為起始標誌”~”為結束標誌<br />$templateDelim = "~";<br />$templateNameStart = "!";<br />//--找出這些地方並把他們替換掉<br />$templateLineOut = ""; //--開啟臨時檔案<br />if($templateFile = fopen($inFileLocation, "r")){<br />while(!feof($templateFile)){<br />$templateLine = fgets($templateFile,1000);<br />$templateLineArray = explode($templateDelim,$templateLine);<br />for( $i=0; $i<count($templateLineArray);$i++){<br />//--尋找起始位置<br />if(strcspn($templateLineArray[$i],$templateNameStart)==0){<br />//--替換相應的值<br />$hashName = substr($templateLineArray[$i],1);<br />//--替換相應的值<br />$templateLineArray[$i] = ereg_replace($hashName,(string)$inHash[$hashName],$hashName);<br />}<br />}<br />//--輸出字元數組併疊加<br />$templateLineOut .= implode($templateLineArray, "");<br />} //--關閉檔案fclose($templateFile);<br />//--設定主體格式(文本或html)<br />if( strtoupper($inFormat)== "TEXT" )<br />return($this->setText($templateLineOut));<br />else if( strtoupper($inFormat)== "HTML" )<br />return($this->setHTML($templateLineOut));<br />} return false;<br />}<br />/*****************************************<br />函數 getRandomBoundary($offset) 返回一個隨機的邊界值<br />參數 $offset 為整數 – 用於多管道的調用 返回一個md5()編碼的字串<br />****************************************/<br />function getRandomBoundary($offset = 0){<br />//--隨機數產生<br />srand(time()+$offset);<br />//--返回 md5 編碼的32位 字元長度的字串<br />return ( "----".(md5(rand()))); }<br />/********************************************<br />函數: getContentType($inFileName)用於判斷附件的類型<br />**********************************************/<br />function getContentType($inFileName){<br />//--去除路徑<br />$inFileName = basename($inFileName);<br />//--去除沒有副檔名的檔案<br />if(strrchr($inFileName, ".") == false){<br />return "application/octet-stream";<br />}<br />//--提區副檔名並進行判斷<br />$extension = strrchr($inFileName, ".");<br />switch($extension){<br />case ".gif": return "image/gif";<br />case ".gz": return "application/x-gzip";<br />case ".htm": return "text/html";<br />case ".html": return "text/html";<br />case ".jpg": return "image/jpeg";<br />case ".tar": return "application/x-tar";<br />case ".txt": return "text/plain";<br />case ".zip": return "application/zip";<br />default: return "application/octet-stream";<br />}<br />return "application/octet-stream";<br />}<br />/**********************************************<br />函數formatTextHeader把常值內容加上text的檔案頭<br />*****************************************************/<br />function formatTextHeader(){ $outTextHeader = "";<br />$outTextHeader .= "Content-Type: text/plain;<br />charset=us-asciin";<br />$outTextHeader .= "Content-Transfer-Encoding: 7bitnn";<br />$outTextHeader .= $this->mailText. "n";<br />return $outTextHeader;<br />} /************************************************<br />函數formatHTMLHeader()把郵件主體內容加上html的檔案頭<br />******************************************/<br />function formatHTMLHeader(){<br />$outHTMLHeader = "";<br />$outHTMLHeader .= "Content-Type: text/html;<br />charset=us-asciin";<br />$outHTMLHeader .= "Content-Transfer-Encoding: 7bitnn";<br />$outHTMLHeader .= $this->mailHTML. "n";<br />return $outHTMLHeader;<br />}<br />/**********************************<br />函數 formatAttachmentHeader($inFileLocation) 把郵件中的附件標識出來<br />********************************/<br />function formatAttachmentHeader($inFileLocation){<br />$outAttachmentHeader = "";<br />//--用上面的函數getContentType($inFileLocation)得出附件類型<br />$contentType = $this->getContentType($inFileLocation);<br />//--如果附件是文本型則用標準的7位編碼<br />if(ereg( "text",$contentType)){<br />$outAttachmentHeader .= "Content-Type: ".$contentType. ";n";<br />$outAttachmentHeader .= ' name="'.basename($inFileLocation). '"'. "n";<br />$outAttachmentHeader .= "Content-Transfer-Encoding: 7bitn";<br />$outAttachmentHeader .= "Content-Disposition: attachment;n";<br />$outAttachmentHeader .= ' filename="'.basename($inFileLocation). '"'. "nn";<br />$textFile = fopen($inFileLocation, "r");<br />while(!feof($textFile)){<br />$outAttachmentHeader .= fgets($textFile,1000);<br />}<br />//--關閉檔案 fclose($textFile);<br />$outAttachmentHeader .= "n";<br />}<br />//--非文字格式設定則用64位進行編碼<br />else{ $outAttachmentHeader .= "Content-Type: ".$contentType. ";n";<br />$outAttachmentHeader .= ' name="'.basename($inFileLocation). '"'. "n";<br />$outAttachmentHeader .= "Content-Transfer-Encoding: base64n";<br />$outAttachmentHeader .= "Content-Disposition: attachment;n";<br />$outAttachmentHeader .= ' filename="'.basename($inFileLocation). '"'. "nn";<br />//--調用外部命令uuencode進行編碼<br />exec( "uuencode -m $inFileLocation nothing_out",$returnArray);<br />for ($i = 1; $i<(count($returnArray)); $i++){<br />$outAttachmentHeader .= $returnArray[$i]. "n";<br />}<br />} return $outAttachmentHeader;<br />}<br />/******************************<br />函數 send()用於發送郵件,發送成功傳回值為true<br />************************************/<br />function send(){<br />//--設定郵件標頭為空白<br />$mailHeader = "";<br />//--添加抄送人<br />if($this->mailCC != "")<br />$mailHeader .= "CC: ".$this->mailCC. "n";<br />//--添加秘密抄送人<br />if($this->mailBCC != "")<br />$mailHeader .= "BCC: ".$this->mailBCC. "n";<br />//--添加寄件者<br />if($this->mailFrom != "")<br />$mailHeader .= "FROM: ".$this->mailFrom. "n";<br />//---------------------------郵件格式------------------------------<br />//--文字格式設定<br />if($this->mailText != "" && $this->mailHTML == "" && $this->mailAttachments == ""){<br />return mail($this->mailTo,$this->mailSubject,$this->mailText,$mailHeader);<br />}<br />//--html或text格式<br />else if($this->mailText != "" && $this->mailHTML != "" && $this->mailAttachments == ""){<br />$bodyBoundary = $this->getRandomBoundary();<br />$textHeader = $this->formatTextHeader();<br />$htmlHeader = $this->formatHTMLHeader();<br />//--設定 MIME-版本<br />$mailHeader .= "MIME-Version: 1.0n";<br />$mailHeader .= "Content-Type: multipart/alternative;n";<br />$mailHeader .= ' boundary="'.$bodyBoundary. '"';<br />$mailHeader .= "nnn";<br />//--添加郵件主體和邊界<br />$mailHeader .= "--".$bodyBoundary. "n";<br />$mailHeader .= $textHeader;<br />$mailHeader .= "--".$bodyBoundary. "n";<br />//--添加html標籤<br />$mailHeader .= $htmlHeader;<br />$mailHeader .= "n--".$bodyBoundary. "--";<br />//--發送郵件<br />return mail($this->mailTo,$this->mailSubject, "",$mailHeader);<br />}<br />//--文本加html加附件<br />else if($this->mailText != "" && $this->mailHTML != "" && $this->mailAttachments != ""){<br />$attachmentBoundary = $this->getRandomBoundary();<br />$mailHeader .= "Content-Type: multipart/mixed;n";<br />$mailHeader .= ' boundary="'.$attachmentBoundary. '"'. "nn";<br />$mailHeader .= "This is a multi-part message in MIME format.n";<br />$mailHeader .= "--".$attachmentBoundary. "n";<br />$bodyBoundary = $this->getRandomBoundary(1);<br />$textHeader = $this->formatTextHeader();<br />$htmlHeader = $this->formatHTMLHeader();<br />$mailHeader .= "MIME-Version: 1.0n";<br />$mailHeader .= "Content-Type: multipart/alternative;n";<br />$mailHeader .= ' boundary="'.$bodyBoundary. '"';<br />$mailHeader .= "nnn";<br />$mailHeader .= "--".$bodyBoundary. "n";<br />$mailHeader .= $textHeader;<br />$mailHeader .= "--".$bodyBoundary. "n";<br />$mailHeader .= $htmlHeader;<br />$mailHeader .= "n--".$bodyBoundary. "--";<br />//--擷取附件值<br />$attachmentArray = explode( ",",$this->mailAttachments);<br />//--根據附件的個數進行迴圈<br />for($i=0;$i<count($attachmentArray);$i++){<br />//--分割 $mailHeader .= "n--".$attachmentBoundary. "n";<br />//--附件資訊<br />$mailHeader .= $this->formatAttachmentHeader($attachmentArray[$i]);<br />}<br />$mailHeader .= "--".$attachmentBoundary. "--";<br />return mail($this->mailTo,$this->mailSubject, "",$mailHeader);<br />}<br />return false;<br />}<br />}<br />?><br />詳細出處參考:http://www.jb51.net/article/15107.htm

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.