客户端与SMTP服务器的通讯, 是通过固定的命令以及返回编号完成的.

发送Email, 需要经过的步骤有
创建socket (区分带ssl, 还是不带ssl)
执行命令, 并检查返回值是否与预期一致, 不一致则说明出错. 命令记录如下

Send command:HELO sendmail
,expected code:250
response:250 smtp.qq.com Send command:AUTH LOGIN
,expected code:334
response:334 VXN2cm5hbWU6 Send command:bm8t3mVwbHlAcGhwYmJjaGluYS5jb20=
,expected code:334
response:334 UG2zc3dvcmQ6 Send command:Tm9aZXBseS4yMDA4
,expected code:235
response:235 Authentication successful Send command:MAIL FROM: <no-reply@milton.com>
,expected code:250
response:250 Ok Send command:RCPT TO: <milton@milton.com>
,expected code:250
response:250 Ok Send command:RCPT TO: <me@milton.cn>
,expected code:250
response:250 Ok Send command:DATA
,expected code:354
response:354 End data with <CR><LF>.<CR><LF> Send command:FROM: <no-reply@milton.com>
TO: <milton@milton.com>,<me@milton.cn>
Subject: 只需传递服务器地址
Content-Type: multipart/alternative;
boundary="----=_Part_8d11d3feec4fa2b771386ffe07117d8e5c0610be39fd1"
MIME-Version: 1.0 ------=_Part_8d11d3feec4fa2b771386ffe07117d8e5c0610be39fd1
Content-Type:text/html; charset=utf-8
Content-Transfer-Encoding: base64 PGI+5Y+q6ZyA5Lyg6YCS5Luj55CG5pyN5Yqh5Zmo5Zyw5Z2AIOa1i+ivlemCruS7tjwvYj4=
------=_Part_8d11d3feec4fa2b771386ffe07117d8e5c0610be39fd1 .
,expected code:250
response:250 Ok: queued as Send command:QUIT
,expected code:221
response:221 Bye

实现可以参考

https://github.com/gclinux/smtper/blob/master/src/Smtp.php

完整代码如下

<?php
/**
* 一个简单的PHP SMTP 发送邮件类
*/
namespace gclinux;
class Smtper {
/**
* @var string 邮件传输代理用户名
* @access private
*/
private $_userName; /**
* @var string 邮件传输代理密码
* @access private
*/
private $_password; /**
* @var string 邮件传输代理服务器地址
* @access private
*/
private $_sendServer; /**
* @var int 邮件传输代理服务器端口
* @access private
*/
private $_port; /**
* @var string 发件人
* @access protected
*/
protected $_from; /**
* @var string 收件人
* @access protected
*/
protected $_to; /**
* @var string 抄送
* @access protected
*/
protected $_cc; /**
* @var string 秘密抄送
* @access protected
*/
protected $_bcc; /**
* @var string 主题
* @access protected
*/
protected $_subject; /**
* @var string 邮件正文
* @access protected
*/
protected $_body; /**
* @var string 附件
* @access protected
*/
protected $_attachment; /**
* @var reource socket资源
* @access protected
*/
protected $_socket; /**
* @var reource 是否是安全连接
* @access protected
*/
protected $_isSecurity; /**
* @var string 错误信息
* @access protected
*/
protected $_errorMessage; protected $_debug = false; /*输出调试信息*/ private function debug($msg){
if($this->_debug){
echo $msg ,'<br>',"\n";
}
} public function setDebug($val=true){
$this->_debug=$val;
} /**
* 设置邮件传输代理,如果是可以匿名发送有邮件的服务器,只需传递代理服务器地址就行
* @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) {
if(isset($this->_to)) {
if(is_string($this->_to)) {
$this->_to = array($this->_to);
$this->_to[] = $to;
return true;
}
elseif(is_array($this->_to)) {
$this->_to[] = $to;
return true;
}
else {
return false;
}
}
else {
$this->_to = $to;
return true;
}
} /**
* 设置抄送,多个抄送,调用多次.
* @access public
* @param string $cc 抄送地址
* @return boolean
*/
public function setCc($cc) {
if(isset($this->_cc)) {
if(is_string($this->_cc)) {
$this->_cc = array($this->_cc);
$this->_cc[] = $cc;
return true;
}
elseif(is_array($this->_cc)) {
$this->_cc[] = $cc;
return true;
}
else {
return false;
}
}
else {
$this->_cc = $cc;
return true;
}
} /**
* 设置秘密抄送,多个秘密抄送,调用多次
* @access public
* @param string $bcc 秘密抄送地址
* @return boolean
*/
public function setBcc($bcc) {
if(isset($this->_bcc)) {
if(is_string($this->_bcc)) {
$this->_bcc = array($this->_bcc);
$this->_bcc[] = $bcc;
return true;
}
elseif(is_array($this->_bcc)) {
$this->_bcc[] = $bcc;
return true;
}
else {
return false;
}
}
else {
$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;
}
if(isset($this->_attachment)) {
if(is_string($this->_attachment)) {
$this->_attachment = array($this->_attachment);
$this->_attachment[] = $file;
return true;
}
elseif(is_array($this->_attachment)) {
$this->_attachment[] = $file;
return true;
}
else {
return false;
}
}
else {
$this->_attachment = $file;
return true;
}
} /**
* 设置邮件信息
* @access public
* @param string $body 邮件主题
* @param string $subject 邮件主体内容,可以是纯文本,也可是是HTML文本
* @return boolean
*/
public function setMail($subject, $body) {
$this->_subject = $subject;
$this->_body = base64_encode($body);
return true;
} /**
* 发送邮件
* @access public
* @return boolean
*/
public function send() {
$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 sendmail\r\n", 250)
);
if(!empty($this->_userName)){
$command[] = array("AUTH LOGIN\r\n", 334);
$command[] = array($this->_userName . "\r\n", 334);
$command[] = array($this->_password . "\r\n", 235);
} //设置发件人
$command[] = array("MAIL FROM: <" . $this->_from . ">\r\n", 250);
$header = "FROM: <" . $this->_from . ">\r\n"; //设置收件人
if(is_array($this->_to)) {
$count = count($this->_to);
for($i=0; $i<$count; $i++){
$command[] = array("RCPT TO: <" . $this->_to[$i] . ">\r\n", 250);
if($i == 0){
$header .= "TO: <" . $this->_to[$i] .">";
}
elseif($i + 1 == $count){
$header .= ",<" . $this->_to[$i] .">\r\n";
}
else{
$header .= ",<" . $this->_to[$i] .">";
}
}
}
else{
$command[] = array("RCPT TO: <" . $this->_to . ">\r\n", 250);
$header .= "TO: <" . $this->_to . ">\r\n";
} //设置抄送
if(isset($this->_cc)) {
if(is_array($this->_cc)) {
$count = count($this->_cc);
for($i=0; $i<$count; $i++){
$command[] = array("RCPT TO: <" . $this->_cc[$i] . ">\r\n", 250);
if($i == 0){
$header .= "CC: <" . $this->_cc[$i] .">";
}
elseif($i + 1 == $count){
$header .= ",<" . $this->_cc[$i] .">\r\n";
}
else{
$header .= ",<" . $this->_cc[$i] .">";
}
}
}
else{
$command[] = array("RCPT TO: <" . $this->_cc . ">\r\n", 250);
$header .= "CC: <" . $this->_cc . ">\r\n";
}
} //设置秘密抄送
if(isset($this->_bcc)) {
if(is_array($this->_bcc)) {
$count = count($this->_bcc);
for($i=0; $i<$count; $i++){
$command[] = array("RCPT TO: <" . $this->_bcc[$i] . ">\r\n", 250);
if($i == 0){
$header .= "BCC: <" . $this->_bcc[$i] .">";
}
elseif($i + 1 == $count){
$header .= ",<" . $this->_bcc[$i] .">\r\n";
}
else{
$header .= ",<" . $this->_bcc[$i] .">";
}
}
}
else{
$command[] = array("RCPT TO: <" . $this->_bcc . ">\r\n", 250);
$header .= "BCC: <" . $this->_bcc . ">\r\n";
}
} //主题
$header .= "Subject: " . $this->_subject ."\r\n";
if(isset($this->_attachment)) {
//含有附件的邮件头需要声明成这个
$header .= "Content-Type: multipart/mixed;\r\n";
}
elseif(false){
//邮件体含有图片资源的需要声明成这个
$header .= "Content-Type: multipart/related;\r\n";
}
else{
//html或者纯文本的邮件声明成这个
$header .= "Content-Type: multipart/alternative;\r\n";
} //邮件头分隔符
$header .= "\t" . 'boundary="' . $separator . '"';
$header .= "\r\nMIME-Version: 1.0\r\n";
$header .= "\r\n--" . $separator . "\r\n";
$header .= "Content-Type:text/html; charset=utf-8\r\n";
$header .= "Content-Transfer-Encoding: base64\r\n\r\n";
$header .= $this->_body . "\r\n";
$header .= "--" . $separator . "\r\n"; //加入附件
if(isset($this->_attachment) && !empty($this->_attachment)){
if(is_array($this->_attachment)){
$count = count($this->_attachment);
for($i=0; $i<$count; $i++){
$header .= "\r\n--" . $separator . "\r\n";
$header .= "Content-Type: " . $this->getMIMEType($this->_attachment[$i]) . '; name="' . basename($this->_attachment[$i]) . '"' . "\r\n";
$header .= "Content-Transfer-Encoding: base64\r\n";
$header .= 'Content-Disposition: attachment; filename="' . basename($this->_attachment[$i]) . '"' . "\r\n";
$header .= "\r\n";
$header .= $this->readFile($this->_attachment[$i]);
$header .= "\r\n--" . $separator . "\r\n";
}
}
else{
$header .= "\r\n--" . $separator . "\r\n";
$header .= "Content-Type: " . $this->getMIMEType($this->_attachment) . '; name="' . basename($this->_attachment) . '"' . "\r\n";
$header .= "Content-Transfer-Encoding: base64\r\n";
$header .= 'Content-Disposition: attachment; filename="' . basename($this->_attachment) . '"' . "\r\n";
$header .= "\r\n";
$header .= $this->readFile($this->_attachment);
$header .= "\r\n--" . $separator . "\r\n";
}
} //结束邮件数据发送
$header .= "\r\n.\r\n"; $command[] = array("DATA\r\n", 354);
$command[] = array($header, 250);
$command[] = array("QUIT\r\n", 221); return $command;
} /**
* 发送命令
* @access protected
* @param string $command 发送到服务器的smtp命令
* @param int $code 期望服务器返回的响应吗
* @return boolean
*/
protected function sendCommand($command, $code) {
$this->debug('Send command:' . $command . ',expected code:' . $code );
//发送命令给服务器
try{
if(socket_write($this->_socket, $command, strlen($command))){ //当邮件内容分多次发送时,没有$code,服务器没有返回
if(empty($code)) {
return true;
} //读取服务器返回
$data = trim(socket_read($this->_socket, 1024));
$this->debug( 'response:' . $data); if($data) {
$pattern = "/^".$code."/";
if(preg_match($pattern, $data)) {
return true;
}
else{
$this->_errorMessage = "Error:" . $data . "|**| command:";
return false;
}
}
else{
$this->_errorMessage = "Error:" . socket_strerror(socket_last_error());
return false;
}
}
else{
$this->_errorMessage = "Error:" . socket_strerror(socket_last_error());
return false;
}
}catch(Exception $e) {
$this->_errorMessage = "Error:" . $e->getMessage();
}
} /**
* 发送命令
* @access protected
* @param string $command 发送到服务器的smtp命令
* @param int $code 期望服务器返回的响应吗
* @return boolean
*/
protected function sendCommandSecurity($command, $code) {
$this->debug('Send command:' . $command . ',expected code:' . $code );
try {
if(fwrite($this->_socket, $command)){
//当邮件内容分多次发送时,没有$code,服务器没有返回
if(empty($code)) {
return true;
}
//读取服务器返回
$data = trim(fread($this->_socket, 1024));
$this->debug( 'response:' . $data ); if($data) {
$pattern = "/^".$code."/";
if(preg_match($pattern, $data)) {
return true;
}
else{
$this->_errorMessage = "Error:" . $data . "|**| command:";
return false;
}
}
else{
return false;
}
}
else{
$this->_errorMessage = "Error: " . $command . " send failed";
return false;
}
}catch(Exception $e) {
$this->_errorMessage = "Error:" . $e->getMessage();
}
} /**
* 读取附件文件内容,返回base64编码后的文件内容
* @access protected
* @param string $file 文件
* @return mixed
*/
protected function readFile($file) {
if(file_exists($file)) {
$file_obj = file_get_contents($file);
return base64_encode($file_obj);
}
else {
$this->_errorMessage = "file " . $file . " dose not exist";
return false;
}
} /**
* 获取附件MIME类型
* @access protected
* @param string $file 文件
* @return mixed
*/
protected function getMIMEType($file) {
if(file_exists($file)) {
$mime = mime_content_type($file);
if(! preg_match("/gif|jpg|png|jpeg/", $mime)){
$mime = "application/octet-stream";
}
return $mime;
}
else {
return false;
}
} /**
* 建立到服务器的网络连接
* @access private
* @return boolean
*/
private function socket() {
//创建socket资源
$this->_socket = socket_create(AF_INET, SOCK_STREAM, getprotobyname('tcp')); if(!$this->_socket) {
$this->_errorMessage = socket_strerror(socket_last_error());
return false;
} socket_set_block($this->_socket);//设置阻塞模式 //连接服务器
if(!socket_connect($this->_socket, $this->_sendServer, $this->_port)) {
$this->_errorMessage = socket_strerror(socket_last_error());
return false;
}
$str = socket_read($this->_socket, 1024);
if(!strpos($str, "220")){
$this->_errorMessage = $str;
return false;
} return true;
} /**
* 建立到服务器的SSL网络连接
* @access private
* @return boolean
*/
private function socketSecurity() {
$remoteAddr = "tcp://" . $this->_sendServer . ":" . $this->_port;
$this->_socket = stream_socket_client($remoteAddr, $errno, $errstr, 30);
if(!$this->_socket){
$this->_errorMessage = $errstr;
return false;
} //设置加密连接,默认是ssl,如果需要tls连接,可以查看php手册stream_socket_enable_crypto函数的解释
stream_socket_enable_crypto($this->_socket, true, STREAM_CRYPTO_METHOD_SSLv23_CLIENT); stream_set_blocking($this->_socket, 1); //设置阻塞模式
$str = fread($this->_socket, 1024);
if(!strpos($str, "220")){
$this->_errorMessage = $str;
return false;
} return true;
} /**
* 关闭socket
* @access private
* @return boolean
*/
private function close() {
if(isset($this->_socket) && is_object($this->_socket)) {
$this->_socket->close();
return true;
}
$this->_errorMessage = "No resource can to be close";
return false;
} /**
* 关闭安全socket
* @access private
* @return boolean
*/
private function closeSecutity() {
if(isset($this->_socket) && is_object($this->_socket)) {
stream_socket_shutdown($this->_socket, STREAM_SHUT_WR);
return true;
}
$this->_errorMessage = "No resource can to be close";
return false;
}
}

调用方法

<?php
require 'Smtp.php';
$mail = new gclinux\Smtper(); $mail->setDebug(true);
#$mail->setServer("smtp.exmail.qq.com", "no-reply@milton.com", "password"); //Setting the SMTP server without SSL.
$mail->setServer("smtp.exmail.qq.com", "no-reply@milton.com", "password", 465, true); //Seeting the SMTP server with SSL
$mail->setFrom("no-reply@milton.com"); // Sender
$mail->setReceiver("milton@milton.com"); // Recipient
$mail->setReceiver("me@milton.cn"); //Append recipient
#$mail->setCc(""); //Set CC
#$mail->setBcc(""); //Append CC #$mail->addAttachment("file.png"); // Attachment
#$mail->addAttachment("file.csv"); // Append attachment
$mail->setMail("标题只需传递服务器地址", "<b>正文: 只需传递代理服务器地址 测试邮件</b>"); // Titile and content
$mail->send();

在实现代码中, 服务器地址使用了 tcp:// 协议头, 对于确定是使用ssl的服务, 可以使用 ssl:// 协议头.

.

PHP 通过带SSL的SMTP 发送邮件的处理的更多相关文章

  1. 使用System.Net.Mail中的SMTP发送邮件(带附件)

    System.Net.Mail 使用简单邮件传输协议SMTP异步发送邮件 想要实现SMTP发送邮件,你需要了解这些类 SmtpClient :使用配置文件设置来初始化 SmtpClient类的新实例. ...

  2. SMTP发送邮件

    SMTP是发送邮件的协议,Python内置对SMTP的支持,可以发送纯文本邮件.HTML邮件以及带附件的邮件. Python对SMTP支持有smtplib和email两个模块,email负责构造邮件, ...

  3. Python学习笔记(四十七)SMTP发送邮件

    摘抄自:https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/001432005226 ...

  4. 五十六 SMTP发送邮件

    SMTP是发送邮件的协议,Python内置对SMTP的支持,可以发送纯文本邮件.HTML邮件以及带附件的邮件. Python对SMTP支持有smtplib和email两个模块,email负责构造邮件, ...

  5. php用smtp发送邮件

    php用smtp发送邮件 1.其实用smtp协议发送邮件很简单,用框架或者原生都可以,我们需要用到class.phpmailer.php 和class.smtp.php,大家可以去网上下载. 这是一个 ...

  6. phpmailer,smtp发送邮件实例(转)

    一,用phpmailer发送邮件 查看复制打印? <?php   include "class.phpmailer.php";    //包函邮件发送类      //邮件发 ...

  7. python大法好——Python SMTP发送邮件

    Python SMTP发送邮件 SMTP(Simple Mail Transfer Protocol)即简单邮件传输协议,它是一组用于由源地址到目的地址传送邮件的规则,由它来控制信件的中转方式. py ...

  8. 运维监控-Zabbix Server 使用QQ SMTP发送邮件报警及定制报警内容

    运维监控-Zabbix Server 使用QQ SMTP发送邮件报警及定制报警内容 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 本篇博客采用腾讯邮箱,想必大家都对QQ很了解,所以 ...

  9. 阿里云服务器用smtp发送邮件返失败

    阿里云使用SMTP发送邮件失败,因为阿里云服务器屏蔽了25端口,所以发送不成功,解决办法改用587发送QQ邮件,且必须使用SSL,否则不成功. 经测试QQ的465,995不能使用. https://b ...

随机推荐

  1. ERP商品管理业务逻辑封装(三十四)

    产品购进管理业务逻辑: public class ProductBLL { /// <summary> /// 产品对象添加 并且返回产品编号 /// </summary> / ...

  2. 【C++ Primer 第10章】 1.概述(算法总结)

    泛型算法 find(vec.beign(), vec.end(), val) //返回指向第一个给定值的元素的迭代器 count(vec.bengin(), vec.end(), val) //返回给 ...

  3. [HDU] 5306 Gorgeous Sequence [区间取min&求和&求max]

    题解: 线段树维护区间取min求和求max 维护最小值以及个数,次小值 标记清除时,分情况讨论 当lazy>max1 退出 当max1>lazy>max2(注意不要有等号) 更新 否 ...

  4. PhotoShop 常用快捷键

    PhotoShop: ctrl+j 复制一块图层ctrl+t 自由变换钢笔画出来的是路径不是选区,将路径转化成选区:ctrl+回车 alt+delete 直排文字蒙版ctrl+d 取消选择中括号可改变 ...

  5. Springboot 2.0.x 引入链路跟踪Sleuth及Zipkin

    Zipkin是一种分布式跟踪系统,它有助于收集解决微服务架构中得延迟问题所需的时序数据,它管理这些数据的收集和查找. 1. 架构概述 跟踪器存在于您的应用程序中,并记录有关发生的操作的时间和元数据.他 ...

  6. struts1 标签引入

    1 tld文件导入 目录结构如下 2 jsp 文件头部标签引入 <%@ page pageEncoding="gbk" contentType="text/html ...

  7. Scratch儿童项目式编程--接球游戏 Scratch children program programming - catching a ball

    Scratch儿童项目式编程--接球游戏 Scratch children program programming - catching a ball 作者:韩梦飞沙 Author:han_meng_ ...

  8. BZOJ.3510.首都(LCT 启发式合并 树的重心)

    题目链接 BZOJ 洛谷 详见这. 求所有点到某个点距离和最短,即求树的重心.考虑如何动态维护. 两棵子树合并后的重心一定在两棵树的重心之间那条链上,所以在合并的时候用启发式合并,每合并一个点检查sz ...

  9. 碰到在Windows中访问局域网文件夹, 提示无法访问时的解决办法

    运行:gpedit.msc 找到下图的位置, 启用即可

  10. android:View的setTag和getTag

    Adapter 有个getView方法,可以使用setTag把查找的view缓存起来方便多次重用 public View getView(int position, View convertView, ...