免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1749 | 回复: 0
打印 上一主题 下一主题

分享一个直接发送邮件的代码 [复制链接]

论坛徽章:
1
2015年迎新春徽章
日期:2015-03-04 09:57:09
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-10-09 09:39 |只看该作者 |倒序浏览
直接投递到邮件服务器,不需要使用smtp,建议设置spf,支持附件发送

  1. <?php
  2. /**
  3. * Email Class
  4. *
  5. * @author eslizn <eslizn@live.cn>
  6. * @package Vendor\Util
  7. * @version $Id
  8. */

  9. class Email{
  10.        
  11.         var $data;
  12.         var $error=array();

  13.         var $version='1.0';
  14.         var $mailer='Xmailer';
  15.         var $charset='UTF-8';
  16.         var $type='text/plain';
  17.         var $boundary='#25f9e794323b453885f5181f1b624d0b#';

  18.         var $subject;
  19.         var $message;
  20.         var $attach=array();

  21.         /**
  22.          * 设置邮件主要信息
  23.          * @param string $subject 邮件主题
  24.          * @param string $message 邮件正文
  25.          * @param string $from    邮件发送人
  26.          * @param mixed $data     邮件正文替换数据
  27.          */
  28.         function __construct($subject,$message,$from,$data=null){
  29.                 $this->subject=$subject;
  30.                 $this->message=$message;
  31.                 $this->from=$from;
  32.                 $this->data=$data;
  33.         }
  34.        
  35.         /**
  36.          * 添加附件
  37.          * @param  string $name 附件名
  38.          * @param  bytes $data 附件数据
  39.          * @param  string $type 附件MIME类型
  40.          * @return object       [description]
  41.          */
  42.         function attach($name,$data,$type){
  43.                 array_push($this->attach,array(
  44.                         'type'=>$type,
  45.                         'name'=>$name,
  46.                         'data'=>$data
  47.                 ));
  48.                 return $this;
  49.         }
  50.        
  51.         /**
  52.          * 增加替换数据
  53.          * @param  string $offset [description]
  54.          * @param  string $value  [description]
  55.          * @return object         [description]
  56.          */
  57.         function assign($offset,$value){
  58.                 $this->data[$offset]=$value;
  59.                 return $this;
  60.         }

  61.         /**
  62.          * 发送邮件
  63.          * @param  string $to 收件人
  64.          * @return boolean
  65.          */
  66.         function send($to){
  67.                 $msg=array();
  68.                 if($this->version){
  69.                         array_push($msg, "MIME-Version: {$this->version}");
  70.                 }
  71.                 if($this->mailer){
  72.                         array_push($msg, "X-Mailer: {$this->mailer}");
  73.                 }
  74.                 $rule="/([a-zA-Z0-9_\-\.]+)\@([a-zA-Z0-9_\-\.]+)/i";

  75.                 if(!preg_match($rule,$to,$to) || !preg_match($rule,$this->from,$from)){
  76.                         array_push($this->error,'email format error!');
  77.                         return false;
  78.                 }

  79.                 if (!getmxrr($to[2],$mx)){
  80.                         array_push($this->error,'get mx record error!');
  81.                         return false;
  82.                 }

  83.                 array_push($msg, "From: {$from[1]} <{$from[0]}>");
  84.                 array_push($msg, "To: {$to[1]} <{$to[0]}>");
  85.                 array_push($msg, "Date: ".date("D, t F Y H:i:s O"));
  86.                 array_push($msg, "Subject: =?{$this->charset}?B?".base64_encode($this->subject)."?=");

  87.                 if($this->attach){
  88.                         array_push($msg, "Content-Type: multipart/mixed; boundary=\"{$this->boundary}\"");
  89.                 }else{
  90.                         array_push($msg, "Content-Type: {$this->type}; charset={$this->charset}");
  91.                 }
  92.                 array_push($msg, "Content-Transfer-Encoding: base64");
  93.                
  94.                 if($this->data){
  95.                         foreach ($this->data as $offset => $value) {
  96.                                 $this->message=str_replace('{.$offset.'}', $value, $this->message);
  97.                         }
  98.                 }

  99.                 if($this->attach){
  100.                         array_push($msg, "--{$this->boundary}");
  101.                         array_push($msg, "Content-Type: {$this->type}; charset={$this->charset}");
  102.                         array_push($msg, "Content-Transfer-Encoding: base64");
  103.                         array_push($msg, "");
  104.                         array_push($msg, base64_encode($this->message));
  105.                 }else{
  106.                         array_push($msg, "");
  107.                         array_push($msg, base64_encode($this->message));
  108.                 }

  109.                 if($this->attach){
  110.                         foreach ($this->attach as $attach) {
  111.                                 array_push($msg, "--{$this->boundary}");
  112.                                 array_push($msg, "Content-Type: {$attach['type']}; name=\"{$attach['name']}\"");
  113.                                 array_push($msg, "Content-Transfer-Encoding: base64");
  114.                                 array_push($msg, "");
  115.                                 array_push($msg, base64_encode($attach['data']));
  116.                         }
  117.                 }

  118.                 $cmds=array(
  119.                         "HELO {$from[2]}",
  120.                         "MAIL FROM:<{$from[0]}>",
  121.                         "RCPT TO:<{$to[0]}>",
  122.                         "DATA",
  123.                         implode("\r\n",$msg)."\r\n.\r\n",
  124.                         "QUIT"
  125.                 );

  126.                 $fp=fsockopen(current($mx),25);
  127.                 foreach($cmds as $val){
  128.                         fwrite($fp,$val."\r\n");
  129.                         $status=fgets($fp);
  130.                         if(preg_match('/^(\d+) ([\w\W]+)$/', $status,$status)){
  131.                                 if(!in_array($status[1], array(220, 354, 214, 211, 250, 251))){
  132.                                         array_push($this->error, $status[2]);
  133.                                         return false;
  134.                                 }
  135.                         }
  136.                 }
  137.                 fclose($fp);
  138.                 return true;
  139.         }

  140.         /**
  141.          * 获取错误信息
  142.          * @return [type] [description]
  143.          */
  144.         function getError(){
  145.                 return $this->error;
  146.         }

  147. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP