设为首页收藏本站关注微信<<< 抵制 IE6 人人有责 >>>
搜索
热搜: 活动 交友 discuz
查看: 1750|回复: 0

[其他(待整理)] Php邮件发送源码

[复制链接]
发表于 2017-3-7 14:30:00 | 显示全部楼层 |阅读模式
好久冒写点东西了.....最近生活压抑的很....为生活而劳累,整理下邮件发送的实例了,网上也有很多,我这个也是提取整理好的,测试Ok,首页邮件类smtp_email_class.php如下:
[PHP] 纯文本查看 复制代码
<?php
class email
{
function send_mail($to,$subject,$message,$from,$from_name,$mailformat=1)
{
if(function_exists('mail'))
{

$headers = 'From: '.$from_name.'<'.$from.'>'."\r\n";
$headers .= 'TO: '.$to."\r\n";
if($mailformat)
{$headers .="Content-Type: text/html;\r\n";}
else
{$headers .="Content-Type: text/plain;\r\n";}
$headers .="charset=gb2312\r\n\r\n";


$message = str_replace("\r", '', $message);

$mail_return=@mail($to, str_replace("\n",' ',$subject), $message,$headers);

if(!$mail_return)
{
return $to.'发送不成功';
}

return 1;
}
}

function send_win32_mail($to,$subject,$message,$from,$from_name,$host,$port,$mailformat=1)
{
ini_set('SMTP', $host);
ini_set('smtp_port', $port);
ini_set('sendmail_from', $from);

$headers = 'From: '.$from_name.'<'.$from.'>'."\r\n";
$headers .= 'TO: '.$to."\r\n";
if($mailformat)
{$headers .="Content-Type: text/html;\r\n";}
else
{$headers .="Content-Type: text/plain;\r\n";}
$headers .="charset=gb2312\r\n\r\n";

foreach(explode(',', $to) as $touser)
{
$touser = trim($touser);
if($touser)
{
$mail_return=@mail($touser, $subject, $message, $headers);
if(!$mail_return)
{
return $touser.'发送不成功';
}
}
}
return 1;
}

//通过sock发送e_mail,不支持附件,
//-------------------------------------------------------------------------------------------------------
function email_sock($host,$port,$errno,$errstr,$timeout,$auth,$user,$pass,$from)//构造函数
{
$this->host = $host;
$this->port = $port;
$this->errno = $errno;
$this->errstr = $errstr;
$this->timeout = $timeout;
$this->auth = $auth;
$this->user = $user;
$this->pass = $pass;
$this->from = $from;
}

function send_mail_sock($subject,$message,$to,$from_name,$mailformat=0)//邮件标题,邮件内容,收件地址,邮件格式1=text|0=html,默认为0
{
$host = $this->host;
$port = $this->port;
$errno = $this->errno;
$errstr = $this->errstr;
$timeout = $this->timeout;
$auth = $this->auth;
$user = $this->user;
$pass = $this->pass;
$from = $this->from;

/*
1.创建sock,并打开连接
2.设置为阻塞模式
3.测试smtp应答码是否为220,220代表邮件服务就绪
4.发送用户身份验证,由用户设置
1=EHLO Host Domain \r\n
0=HELO Host Domain \r\n
?.读取服务器端发送给客户端的返回数据
smtp.163.com 发送的数据为:
250-PIPELINING//流水命令,告诉客户端可以一次发送多个命令来提高速度,在这里PHP
并没有使用,因为PHP单个文件的运行还是单线程的
250-AUTH LOGIN PLAIN
250-AUTH=LOGIN PLAIN
250 8BITMIME//得到这一行也就是smtp服务器发送结束了,等待客户端发送命令
5.发送AUTH LOGIN命令
6.发送用户名
7.发送密码
?.身份验证过成功后后,
8.向服务器添加from
9.向服务器添加to
10.发送DATA命令,开始输入email数据,以"."号结束
11.书写邮件内容
12.将邮件内容发送到smtp服务器
13.发送QUIT命令,结束会话
*/ 
$fp = fsockopen($host,$port,$errno,$errstr,$timeout);//打开sock的网络连接
if(!$fp){return '1.没有设置好smtp服务';}

stream_set_blocking($fp, true);//设置为阻塞模式,此模式读不到数据则会停止在那

$mail_return=fgets($fp, 512);//读取512字节内容
if(substr($mail_return, 0, 3) != '220')
{return $host.'-2.返回应答码为'.substr($mail_return, 0, 3);}//返回应答码所代表意思请参考'smtp协议.txt'


fputs($fp, ($auth ? 'EHLO' : 'HELO')." ".$host."\r\n");//服务器标识用户身份 1=身份验证的标识,0=不需要身份验证的标识
$mail_return = fgets($fp, 512);
if(substr($mail_return, 0, 3) != 220 && substr($mail_return, 0, 3) != 250)
{return $host.'-3.返回应答码为'.substr($mail_return, 0, 3);}

while(true)
{
$mail_return = fgets($fp, 512);
if(substr($mail_return, 3, 1) != '-' || empty($mail_return))
{break;}
}


if($auth)
{
fputs($fp, "AUTH LOGIN\r\n");
$mail_return = fgets($fp, 512);
if(substr($mail_return, 0, 3) != 334) 
{return $host.'-5.返回应答码为'.substr($mail_return, 0, 3);}

fputs($fp, base64_encode($user)."\r\n");
$mail_return = fgets($fp, 512);
if(substr($mail_return, 0, 3) != 334) 
{return $host.'-6.返回应答码为'.substr($mail_return, 0, 3).'user='.$user;}

fputs($fp, base64_encode($pass)."\r\n");
$mail_return=fgets($fp, 512);
if(substr($mail_return, 0, 3) != 235)
{return $host.'-7.用户验证失败,应答码为'.substr($mail_return, 0, 3);}
}

//向服务器添加FROM and TO
//------------------------------------------------------------------------------------------------------------------------
fputs($fp, "MAIL FROM: ".$from."\r\n");//有两种格式,MAIL FROM:xxx@xx.com和MAIL FROM: <[email]xxx@xx.com[/email]>
$mail_return = fgets($fp, 512);
if(substr($mail_return, 0, 3) != 250)
{
fputs($fp, "MAIL FROM: <".$from.">\r\n");
$mail_return = fgets($fp, 512);
if(substr($mail_return, 0, 3) != 250)
{return $host.'-8.返回应答码为'.substr($mail_return, 0, 3);}
}

foreach(explode(',', $to) as $mailto)
{
$mailto = trim($mailto);
if($mailto)
{
fputs($fp, "RCPT TO: ".$mailto."\r\n");
$mail_return = fgets($fp, 512);
if(substr($mail_return, 0, 3) != 250)
{
fputs($fp, "RCPT TO: <".$mailto.">\r\n");
$mail_return = fgets($fp, 512);
if(substr($mail_return, 0, 3) != 250)
{return $host.'-9.返回应答码为'.substr($mail_return, 0, 3);}
}
}

}
//------------------------------------------------------------------------------------------------------------------------
fputs($fp, "DATA\r\n");//开始输入email数据,以"."号结束
$mail_return = fgets($fp, 512);
if(substr($mail_return, 0, 3) != 354)
{return $host.'-10.返回应答码为'.substr($mail_return, 0, 3);}

//邮件内容
//-----------------------------------------------------------
$mail_message = "From:".$from_name.'<'.$from.">\r\n"; 
$mail_message .= "To:".$to."\r\n"; 
$mail_message .= "Subject:".str_replace("\n",' ',$subject)."\r\n"; 
if($mailformat==1)
{$mail_message .= "Content-Type: text/html;\r\n"; }
else
{$mail_message .= "Content-Type: text/plain;\r\n";} 
$mail_message .= "charset=gb2312\r\n\r\n"; 
$mail_message .= $message; 
$mail_message .= "\r\n.\r\n"; 
//-----------------------------------------------------------

fputs($fp,$mail_message);
fputs($fp,"QUIT\r\n");

return 1;
}
}

?>



使用方法,新建send.php,源码如下
[PHP] 纯文本查看 复制代码
<?php
//*
include('smtp_email_class.php');
//定义参数------------------------------------------------------
$host = 'smtp.163.com';//smtp服务器地址,我这里又能够的是163的,视情况而定
$from = 'fantasy_lxh@163.com';//自己的邮件地址
$port = 25;//端口
$errno = 0;//错误返回号
$errstr = '';//错误返回内容
$timeout = 10;//系统运行超时
$auth = 1;//是否需要 AUTH LOGIN 验证, 1=是, 0=否
$user = '你的邮件用户名';//smtp服务器用户名
$pass = '你的邮件密码';//smtp服务器密码
$from_name='你的大名';//联系人名称
//---------------------------------------------------------------
$send_mode=2;
$em=new email();//使用类
if($send_mode==1){
//使用PHP自己支持的mail函数发送邮件,发送邮件需要smtp服务支持
if($em->send_mail('发送给某人(张三)的邮件地址','标题',"内容",'fantasy_lxh@163.com','自己的名称/联系人名称',0)){
echo("邮件发送成功....");
}
}elseif($send_mode==2){
$em->email_sock($host,$port,$errno,$errstr,$timeout,$auth,$user,$pass,$from);
if($em->send_mail_sock('标题','欢迎和谐','发送给某人(张三)的邮件地址','你的大名',0)){
//$em->send_mail_sock('标题','内容','koiykoiy@gmail.com','联系人名称',0)
echo("邮件发送成功Ok....");
}
}

?>



以上根据具体情况请改变相关变量.....希望对有在用的朋友帮助
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

QQ|手机版|Archiver|源于生活(个人生活娱乐工作的笔记)css3,html5,学习笔记    

GMT+8, 2024-3-29 04:23 , Processed in 0.093600 second(s), 24 queries .

Powered by Mr.Kevin-ying

© 2004-2015

快速回复 返回顶部 返回列表