php smtp实现发送邮件功能


Posted in PHP onJune 22, 2017

本文实例为大家分享了php smtp发送邮件功能的具体代码,供大家参考,具体内容如下

<?php
header("Content-Type: text/html; charset=utf-8");
 
class smtp
{
 /* Public Variables */
 var $smtp_port;
 var $time_out;
 var $host_name;
 var $log_file;
 var $relay_host;
 var $debug;
 var $auth;
 var $user;
 var $pass;
 
 /* Private Variables */ 
 var $sock;
 
 /* Constractor */
 function smtp($relay_host = "", $smtp_port = 25,$auth = false,$user,$pass)
 {
  $this->debug = FALSE;
  $this->smtp_port = $smtp_port;
  $this->relay_host = $relay_host;
  $this->time_out = 30; //is used in fsockopen() 
  $this->auth = $auth;//auth
  $this->user = $user;
  $this->pass = $pass;
  $this->host_name = "localhost"; //is used in HELO command 
  $this->log_file = "";
  $this->sock = FALSE;
}
 
 /* Main Function */
 function sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = "")
 {
  $mail_from = $this->get_address($this->strip_comment($from));
  $body = preg_replace("/(^|(\r\n))(\.)/", "\1.\3", $body);
  $header = "MIME-Version:1.0\r\n";
  if($mailtype=="HTML")
  {
   $header .= "Content-Type:text/html\r\n";
  }
  $header .= "To: ".$to."\r\n";
  if ($cc != "") 
  {
   $header .= "Cc: ".$cc."\r\n";
  }
  $header .= "From: $from<".$from.">\r\n";
  $header .= "Subject: ".$subject."\r\n";
  $header .= $additional_headers;
  $header .= "Date: ".date("r")."\r\n";
  $header .= "X-Mailer:By Redhat (PHP/".phpversion().")\r\n";
  list($msec, $sec) = explode(" ", microtime());
  $header .= "Message-ID: <".date("YmdHis", $sec).".".($msec*1000000).".".$mail_from.">\r\n";
  $TO = explode(",", $this->strip_comment($to));
 
  if ($cc != "") 
  {
   $TO = array_merge($TO, explode(",", $this->strip_comment($cc)));
   }
  if ($bcc != "") 
  {
   $TO = array_merge($TO, explode(",", $this->strip_comment($bcc)));
  }
  $sent = TRUE;
  foreach ($TO as $rcpt_to) 
  {
   $rcpt_to = $this->get_address($rcpt_to);
   if (!$this->smtp_sockopen($rcpt_to)) 
   {
    $this->log_write("Error: Cannot send email to ".$rcpt_to."\n");
    $sent = FALSE;
    continue;
   }
   if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) 
   {
    $this->log_write("E-mail has been sent to <".$rcpt_to.">\n");
   } 
   else 
   {
    $this->log_write("Error: Cannot send email to <".$rcpt_to.">\n");
    $sent = FALSE;
   }
   fclose($this->sock);
   $this->log_write("Disconnected from remote host\n");
  }
  return $sent;
 }
 
 /* Private Functions */
 function smtp_send($helo, $from, $to, $header, $body = "")
 {
  if (!$this->smtp_putcmd("HELO", $helo)) 
  {
   return $this->smtp_error("sending HELO command");
  }
 
  #auth
  if($this->auth)
  {
   if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) 
   {
    return $this->smtp_error("sending HELO command");
   }
   if (!$this->smtp_putcmd("", base64_encode($this->pass))) 
   {
    return $this->smtp_error("sending HELO command");
   }
  }
  if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">")) 
  {
   return $this->smtp_error("sending MAIL FROM command");
  }
  if (!$this->smtp_putcmd("RCPT", "TO:<".$to.">")) 
  {
   return $this->smtp_error("sending RCPT TO command");
  }
  if (!$this->smtp_putcmd("DATA"))
  {
   return $this->smtp_error("sending DATA command");
  }
  if (!$this->smtp_message($header, $body)) 
  {
   return $this->smtp_error("sending message");
  }
  if (!$this->smtp_eom())
  {
   return $this->smtp_error("sending <CR><LF>.<CR><LF> [EOM]");
  }
  if (!$this->smtp_putcmd("QUIT")) 
  {
   return $this->smtp_error("sending QUIT command");
  }
  return TRUE;
 }
 
 function smtp_sockopen($address)
 {
  if ($this->relay_host == "") 
  {
   return $this->smtp_sockopen_mx($address);
  } 
  else
  {
   return $this->smtp_sockopen_relay();
  }
 }
 
 function smtp_sockopen_relay()
 {
  $this->log_write("Trying to ".$this->relay_host.":".$this->smtp_port."\n");
  $this->sock = @fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out);
  if (!($this->sock && $this->smtp_ok())) 
  {
   $this->log_write("Error: Cannot connenct to relay host ".$this->relay_host."\n");
   $this->log_write("Error: ".$errstr." (".$errno.")\n");
   return FALSE;
  }
  $this->log_write("Connected to relay host ".$this->relay_host."\n");
  return TRUE;;
 }
 
 function smtp_sockopen_mx($address)
 {
  $domain = preg_replace("^.+@([^@]+)$", "\1", $address);
  if (!@getmxrr($domain, $MXHOSTS)) 
  {
   $this->log_write("Error: Cannot resolve MX \"".$domain."\"\n");
   return FALSE;
  }
  foreach ($MXHOSTS as $host) 
  {
   $this->log_write("Trying to ".$host.":".$this->smtp_port."\n");
   $this->sock = @fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out);
   if (!($this->sock && $this->smtp_ok())) 
   {
    $this->log_write("Warning: Cannot connect to mx host ".$host."\n");
    $this->log_write("Error: ".$errstr." (".$errno.")\n");
    continue;
   }
   $this->log_write("Connected to mx host ".$host."\n");
   return TRUE;
  }
  $this->log_write("Error: Cannot connect to any mx hosts (".implode(", ", $MXHOSTS).")\n");
  return FALSE;
 }
 
 function smtp_message($header, $body)
 {
  fputs($this->sock, $header."\r\n".$body);
  $this->smtp_debug("> ".str_replace("\r\n", "\n"."> ", $header."\n> ".$body."\n> "));
  return TRUE;
 }
 
 function smtp_eom()
 {
  fputs($this->sock, "\r\n.\r\n");
  $this->smtp_debug(". [EOM]\n");
  return $this->smtp_ok();
 }
 
 function smtp_ok()
 {
  $response = str_replace("\r\n", "", fgets($this->sock, 512));
  $this->smtp_debug($response."\n");
  if (!preg_match("/^[23]/", $response)) 
  {
   fputs($this->sock, "QUIT\r\n");
   fgets($this->sock, 512);
   $this->log_write("Error: Remote host returned \"".$response."\"\n");
   return FALSE;
  }
  return TRUE;
 }
 
 function smtp_putcmd($cmd, $arg = "")
 {
  if ($arg != "") 
  {
   if($cmd=="") 
   {
    $cmd = $arg;
   }
   else
   {
    $cmd = $cmd." ".$arg;
   }
  }
  fputs($this->sock, $cmd."\r\n");
  $this->smtp_debug("> ".$cmd."\n");
  return $this->smtp_ok();
 }
 
 function smtp_error($string)
 {
  $this->log_write("Error: Error occurred while ".$string.".\n");
  return FALSE;
 }
 
 function log_write($message)
 {
  $this->smtp_debug($message);
  if ($this->log_file == "")
  {
   return TRUE;
  }
  $message = date("M d H:i:s ").get_current_user()."[".getmypid()."]: ".$message;
  if (!@file_exists($this->log_file) || !($fp = @fopen($this->log_file, "a"))) 
  {
   $this->smtp_debug("Warning: Cannot open log file \"".$this->log_file."\"\n");
   return FALSE;;
  }
  flock($fp, LOCK_EX);
  fputs($fp, $message);
  fclose($fp);
  return TRUE;
 }
 
 function strip_comment($address)
 {
  $comment = "/\([^()]*\)/";
  while (preg_match($comment, $address)) 
  {
   $address = preg_replace($comment, "", $address);
  }
  return $address;
 }
 
 function get_address($address)
 {
  $address = preg_replace("/([ \t\r\n])+/", "", $address);
  $address = preg_replace("/^.*<(.+)>.*$/", "\1", $address);
  return $address;
 }
 
 function smtp_debug($message)
 {
  if ($this->debug) 
  {
   echo $message;
  }
 }
 
}
?>

调用

<?php
header("Content-Type: text/html; charset=utf-8");
 
//引入发送邮件类
require("smtp.php");
//使用163邮箱服务器
$smtpserver = "smtp.163.com";
//163邮箱服务器端口
$smtpserverport = 25;
//你的163服务器邮箱账号
$smtpusermail = "xxx@163.com";
//收件人邮箱
$smtpemailto = "xxx@qq.com";
 
//你的邮箱账号(去掉@163.com)
$smtpuser = "xxx";//你的163邮箱去掉后面的163.com
//你的邮箱密码
$smtppass = "xxx"; //你的163邮箱SMTP的授权码,千万不要填密码!!!
 
//邮件主题
$mailsubject = "测试邮件发送";
//邮件内容
$mailbody = "PHP+MySQL";
//邮件格式(HTML/TXT),TXT为文本邮件
$mailtype = "TXT";
//这里面的一个true是表示使用身份验证,否则不使用身份验证.
$smtp = new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);
//是否显示发送的调试信息
$smtp->debug = TRUE;
//发送邮件
$smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype);
 
?>

代码链接:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

PHP 相关文章推荐
mac下使用brew配置环境的步骤分享
May 23 PHP
PHP curl CURLOPT_RETURNTRANSFER参数的作用使用实例
Feb 07 PHP
php使用数组填充下拉列表框的方法
Mar 31 PHP
PHP面向对象之后期静态绑定功能介绍
May 18 PHP
php将远程图片保存到本地服务器的实现代码
Aug 03 PHP
ThinkPHP中使用Ueditor富文本编辑器
Sep 02 PHP
PHP+Ajax实现验证码的实时验证
Jul 20 PHP
PHP微信红包生成代码分享
Oct 06 PHP
微信开发之php表单微信中自动提交两次问题解决办法
Jan 08 PHP
thinkphp关于简单的权限判定方法
Apr 03 PHP
php 可变函数使用小结
Jun 12 PHP
laravel 模型查询按照whereIn排序的示例
Oct 16 PHP
php实现页面纯静态的实例代码
Jun 21 #PHP
详解php实现页面静态化原理
Jun 21 #PHP
PHP实现的观察者模式实例
Jun 21 #PHP
PHP构造二叉树算法示例
Jun 21 #PHP
ThinkPHP删除栏目(实现批量删除栏目)
Jun 21 #PHP
php基于SQLite实现的分页功能示例
Jun 21 #PHP
PHP面向对象之领域模型+数据映射器实例(分析)
Jun 21 #PHP
You might like
建立文件交换功能的脚本(三)
2006/10/09 PHP
PHP的反射类ReflectionClass、ReflectionMethod使用实例
2014/08/05 PHP
Yii 快速,安全,专业的PHP框架
2014/09/03 PHP
php cookie名使用点号(句号)会被转换
2014/10/23 PHP
PHP使用php-resque库配合Redis实现MQ消息队列的教程
2016/06/29 PHP
php自定义函数br2nl实现将html中br换行符转换为文本输入中换行符的方法【与函数nl2br功能相反】
2017/02/17 PHP
PHP开发之归档格式phar文件概念与用法详解【创建,使用,解包还原提取】
2017/11/17 PHP
event.srcElement+表格应用
2006/08/29 Javascript
一实用的实现table排序的Javascript类库
2007/09/12 Javascript
js 实现无缝滚动 兼容IE和FF
2009/07/15 Javascript
jquery实现的元素的left增加N像素 鼠标移开会慢慢的移动到原来的位置
2010/03/21 Javascript
JavaScript对象创建及继承原理实例解剖
2013/02/28 Javascript
基于jquery实现的省市区级联无ajax
2013/09/24 Javascript
node.js中的buffer.copy方法使用说明
2014/12/14 Javascript
JavaScript实现单击下拉框选择直接跳转页面的方法
2015/07/02 Javascript
javascript设计模式之对象工厂函数与构造函数详解
2015/07/30 Javascript
js调用百度地图及调用百度地图的搜索功能
2015/09/07 Javascript
使用jQuery调用XML实现无刷新即时聊天
2016/08/07 Javascript
ES6 Promise对象概念与用法分析
2017/04/01 Javascript
json2.js 入门教程之使用方法与实例分析
2017/09/14 Javascript
JQuery 又谈ajax局部刷新
2017/11/27 jQuery
百度小程序之间的页面通信过程详解
2019/07/18 Javascript
JS浏览器BOM常见操作实例详解
2020/04/27 Javascript
Python使用新浪微博API发送微博的例子
2014/04/10 Python
Python探索之URL Dispatcher实例详解
2017/10/28 Python
Python面向对象基础入门之设置对象属性
2018/12/11 Python
解决windows下python3使用multiprocessing.Pool出现的问题
2020/04/08 Python
CSS3 box-shadow属性实例详解
2020/06/19 HTML / CSS
巴黎卡诗美国官方网站:始于1964年的头发头皮护理专家
2017/07/10 全球购物
物流专员岗位职责
2014/02/17 职场文书
软件工程毕业生自荐信
2014/07/04 职场文书
《云雀的心愿》教学反思
2016/02/23 职场文书
python 算法题——快乐数的多种解法
2021/05/27 Python
python 爬取华为应用市场评论
2021/05/29 Python
如何自己动手写SQL执行引擎
2021/06/02 MySQL
Python图片验证码降噪和8邻域降噪
2021/08/30 Python