萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> PHP實現支持SSL連接的SMTP郵件發送類

PHP實現支持SSL連接的SMTP郵件發送類

 這篇文章主要介紹了PHP實現支持SSL連接的SMTP郵件發送類,實例分析了php實現smtp郵件發送類的原理與技巧,以及支持SSL連接的方法,需要的朋友可以參考下

   

本文實例講述了PHP實現支持SSL連接的SMTP郵件發送類。分享給大家供大家參考。具體如下:

該實例代碼測試過了gmail和QQ郵箱的SMTP。具體代碼如下:

代碼如下: <?php
/**
* 郵件發送類
* 支持發送純文本郵件和HTML格式的郵件,可以多收件人,多抄送,多秘密抄送,帶附件(單個或多個附件),支持到服務器的ssl連接
* 需要的php擴展:sockets、Fileinfo和openssl。
* 編碼格式是UTF-8,傳輸編碼格式是base64
* @example
* $mail = new MySendMail();
* $mail->setServer("[email protected]", "[email protected]", "XXXXX"); //設置smtp服務器,普通連接方式
* $mail->setServer("smtp.gmail.com", "[email protected]", "XXXXX", 465, true); //設置smtp服務器,到服務器的SSL連接
* $mail->setFrom("XXXXX"); //設置發件人
* $mail->setReceiver("XXXXX"); //設置收件人,多個收件人,調用多次
* $mail->setCc("XXXX"); //設置抄送,多個抄送,調用多次
* $mail->setBcc("XXXXX"); //設置秘密抄送,多個秘密抄送,調用多次
* $mail->addAttachment("XXXX"); //添加附件,多個附件,調用多次
* $mail->setMail("test", "<b>test</b>"); //設置郵件主題、內容
* $mail->sendMail(); //發送
*/
class MySendMail {
/**
* @var string 郵件傳輸代理用戶名
* @access protected
*/
protected $_userName;
/**
* @var string 郵件傳輸代理密碼
* @access protected
*/
protected $_password;
/**
* @var string 郵件傳輸代理服務器地址
* @access protected
*/
protected $_sendServer;
/**
* @var int 郵件傳輸代理服務器端口
* @access protected
*/
protected $_port;
/**
* @var string 發件人
* @access protected
*/
protected $_from;
/**
* @var array 收件人
* @access protected
*/
protected $_to = array();
/**
* @var array 抄送
* @access protected
*/
protected $_cc = array();
/**
* @var array 秘密抄送
* @access protected
*/
protected $_bcc = array();
/**
* @var string 主題
* @access protected
*/
protected $_subject;
/**
* @var string 郵件正文
* @access protected
*/
protected $_body;
/**
* @var array 附件
* @access protected
*/
protected $_attachment = array();
/**
* @var reource socket資源
* @access protected
*/
protected $_socket;
/**
* @var reource 是否是安全連接
* @access protected
*/
protected $_isSecurity;
/**
* @var string 錯誤信息
* @access protected
*/
protected $_errorMessage;
/**
* 設置郵件傳輸代理,如果是可以匿名發送有郵件的服務器,只需傳遞代理服務器地址就行
* @access public
* @param string $server 代理服務器的ip或者域名
* @param string $username 認證賬號
* @param string $password 認證密碼
* @param int $port 代理服務器的端口,smtp默認25號端口
* @param boolean $isSecurity 到服務器的連接是否為安全連接,默認false
* @return boolean
*/
public function setServer($server, $username="", $password="", $port=25, $isSecurity=false) {
$this->_sendServer = $server;
$this->_port = $port;
$this->_isSecurity = $isSecurity;
$this->_userName = empty($username) ? "" : base64_encode($username);
$this->_password = empty($password) ? "" : base64_encode($password);
return true;
}
/**
* 設置發件人
* @access public
* @param string $from 發件人地址
* @return boolean
*/
public function setFrom($from) {
$this->_from = $from;
return true;
}
/**
* 設置收件人,多個收件人,調用多次.
* @access public
* @param string $to 收件人地址
* @return boolean
*/
public function setReceiver($to) {
$this->_to[] = $to;
return true;
}
/**
* 設置抄送,多個抄送,調用多次.
* @access public
* @param string $cc 抄送地址
* @return boolean
*/
public function setCc($cc) {
$this->_cc[] = $cc;
return true;
}
/**
* 設置秘密抄送,多個秘密抄送,調用多次
* @access public
* @param string $bcc 秘密抄送地址
* @return boolean
*/
public function setBcc($bcc) {
$this->_bcc[] = $bcc;
return true;
}
/**
* 設置郵件附件,多個附件,調用多次
* @access public
* @param string $file 文件地址
* @return boolean
*/
public function addAttachment($file) {
if(!file_exists($file)) {
$this->_errorMessage = "file " . $file . " does not exist.";
return false;
}
$this->_attachment[] = $file;
return true;
}
/**
* 設置郵件信息
* @access public
* @param string $body 郵件主題
* @param string $subject 郵件主體內容,可以是純文本,也可是是HTML文本
* @return boolean
*/
public function setMail($subject, $body) {
$this->_subject = base64_encode($subject);
$this->_body = base64_encode($body);
return true;
}
/**
* 發送郵件
* @access public
* @return boolean
*/
public function sendMail() {
$command = $this->getCommand();
$this->_isSecurity ? $this->socketSecurity() : $this->socket();
foreach ($command as $value) {
$result = $this->_isSecurity ? $this->sendCommandSecurity($value[0], $value[1]) : $this->sendCommand($value[0], $value[1]);
if($result) {
continue;
}
else{
return false;
}
}
//其實這裡也沒必要關閉,smtp命令:QUIT發出之後,服務器就關閉了連接,本地的socket資源會自動釋放
$this->_isSecurity ? $this->closeSecutity() : $this->close();
return true;
}
/**
* 返回錯誤信息
* @return string
*/
public function error(){
if(!isset($this->_errorMessage)) {
$this->_errorMessage = "";
}
return $this->_errorMessage;
}
/**
* 返回mail命令
* @access protected
* @return array
*/
protected function getCommand() {
$separator = "----=_Part_" . md5($this->_from . time()) . uniqid(); //分隔符
$command = array(
array("HELO sendmailrn", 250)
);
if(!empty($this->_userName)){
$command[] = array("AUTH LOGINrn", 334);
$command[] = array($this->_userName . "rn", 334);
$command[] = array($this->_password . "rn", 235);
}
//設置發件人
$command[] = array("MAIL FROM: <" . $this->_from . ">rn", 250);
$header = "FROM: <" . $this->_from . ">rn";
//設置收件人
if(!empty($this->_to)) {
$count = count($this->_to);
if($count == 1){
$command[] = array("RCPT TO: <" . $this->_to[0] . ">rn", 250);
$header .= "TO: <" . $this->_to[0] .">rn";
}
else{
for($i=0; $i<$count; $i++){
$command[] = array("RCPT TO: <" . $this->_to[$i] . ">rn"
copyright © 萬盛學電腦網 all rights reserved