下面以qq邮箱为例,按照这四个方面来介绍phpmaiiler的使用:
phpmailer的介绍步骤一:使qq邮箱能够发送邮件步骤二:使php能够使用qq邮箱发送邮件步骤三:编写发送邮件代码 thinkphp使用phpmailer 发送邮件
phpmailer的介绍
可运行在任何平台之上;支持smtp验证;发送邮时指定多个收件人,抄送地址,暗送地址和回复地址;注:添加抄送、暗送仅win平台下smtp方式支持;支持多种邮件编码包括:8bit,base64,binary和quoted-printable;自定义邮件头信息,这跟php中通过header函数发送头信息类似支持将邮件正文制作成html内容,那么就可以在邮件正文中插入图片;经测试兼容的smtp服务器包括:sendmail,qmail,postfix,imail,exchange等。
步骤一:使qq邮箱能够发送邮件
我们的邮箱本来可以发送邮件,但是要实现在我们的网站中发送邮件,那就要设置一下我们的qq邮箱了,因为此时我们的网站现在是作为一个第三方客户端存在的,所以需要用到的是smtp服务器来发送,在这里建议把前面的两项开启了!
进入qq邮箱->点击设置->点击账户
当你点击开启的时候,它会提示:
当你完成以上步骤之后,就会得到一个授权码,你可以先复制出来,待会我们会用到(开启两项的话会得到两个授权码,一定要最新的!)。
步骤二:使php能够使用qq邮箱发送邮件
phpmailer需要php的socket扩展支持,而phpmailer链接qq域名邮箱时需要ssl加密方式,还得php的openssl扩展支持,可以使用phpinfo查看是否开启扩展。
如未开启,到php安装目录找到php.ini中开启两个扩展支持。
步骤三:编写发送邮件代码
index.html代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!doctype html>
<html lang= "en" >
<head>
<meta charset= "utf-8" >
<title>document</title>
</head>
<body>
<form action= "./index.php" method= "post" >
邮箱:<input type= "text" id= "mail" name= "mail" />
标题:<input type= "text" id= "title" name= "title" />
内容<input type= "text" id= "content" name= "content" />
<input type= "submit" value= "发送" />
</form>
</body>
</html>
|
封装一个公共的方法(写在 functions.php 文件中):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/**
*发送邮件方法
*@param $to:接收者 $title:标题 $content:邮件内容
*@return bool true:发送成功 false:发送失败
*/
function sendmail( $to , $title , $content ){
require_once ( "phpmailer/class.phpmailer.php" );
require_once ( "phpmailer/class.smtp.php" );
//实例化phpmailer核心类
$mail = new phpmailer();
//使用smtp鉴权方式发送邮件
$mail ->issmtp();
//smtp需要鉴权 这个必须是true
$mail ->smtpauth=true;
//链接qq域名邮箱的服务器地址
$mail ->host = 'smtp.qq.com' ;
//设置使用ssl加密方式登录鉴权
$mail ->smtpsecure = 'ssl' ;
//设置ssl连接smtp服务器的远程服务器端口号,以前的默认是25,但是现在新的好像已经不可用了 可选465或587
$mail ->port = 465;
//设置发件人的主机域 可有可无 默认为localhost 内容任意,建议使用你的域名
$mail ->hostname = 'http://www.lsgogroup.com' ;
//设置发送的邮件的编码 可选gb2312 我喜欢utf-8 据说utf8在某些客户端收信下会乱码
$mail ->charset = 'utf-8' ;
//设置发件人姓名(昵称) 任意内容,显示在收件人邮件的发件人邮箱地址前的发件人姓名
$mail ->fromname = '发件人姓名(昵称)' ;
//smtp登录的账号 这里填入字符串格式的qq号即可
$mail ->username = '12345678@qq.com' ;
//smtp登录的密码 使用生成的授权码(就刚才保存的最新的授权码)
$mail ->password = '最新的授权码' ;
//设置发件人邮箱地址 这里填入上述提到的“发件人邮箱”
$mail ->from = '12345678@qq.com' ;
//邮件正文是否为html编码 注意此处是一个方法 不再是属性 true或false
$mail ->ishtml(true);
//设置收件人邮箱地址 该方法有两个参数 第一个参数为收件人邮箱地址 第二参数为给该地址设置的昵称 不同的邮箱系统会自动进行处理变动 这里第二个参数的意义不大
$mail ->addaddress( $to , '尊敬的客户' );
//添加多个收件人 则多次调用方法即可
// $mail->addaddress('xxx@163.com','尊敬的客户');
//添加该邮件的主题
$mail ->subject = $title ;
//添加邮件正文 上方将ishtml设置成了true,则可以是完整的html字符串
$mail ->body = $content ;
$status = $mail ->send();
//判断与提示信息
if ( $status ) {
return true;
} else {
return false;
}
}
|
index.php代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
require_once ( "./functions.php" );
$to = $_post [ 'mail' ];
$title = $_post [ 'title' ];
$content = $_post [ 'content' ];
$flag = sendmail( $to , $title , $content );
if ( $flag ){
echo "发送邮件成功!" ;
} else {
echo "发送邮件失败!" ;
}
?>
|
如果你使用的是qq企业邮箱,那么链接qq域名邮箱的服务器地址和smtp登录的密码就不同了:
1
2
3
4
|
//链接qq域名邮箱的服务器地址
$mail ->host = 'smtp.exmail.qq.com' ;
//smtp登录的密码 (qq企业邮箱的登录密码)
$mail ->password = '登录密码' ;
|
thinkphp使用phpmailer 发送邮件
phpmailer解压到thinkphplibraryvendor
在common文件夹新建function.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/**
* 邮件发送函数
* @param $to:接收者 $title:标题 $content:邮件内容
* @return bool true:发送成功 false:发送失败
*/
function sendmail( $to , $title , $content ) {
vendor( 'phpmailer.phpmailerautoload' );
vendor( 'phpmailer.class.smtp' );
$mail = new phpmailer(); //实例化
$mail ->issmtp(); // 启用smtp
$mail ->host=c( 'mail_host' ); //smtp服务器的名称
$mail ->smtpsecure = c( 'mail_secure' );
$mail ->port = c( 'mail_port' );
$mail ->smtpauth = c( 'mail_smtpauth' ); //启用smtp认证
$mail ->username = c( 'mail_username' ); //你的邮箱名
$mail ->password = c( 'mail_password' ) ; //邮箱密码
$mail ->from = c( 'mail_from' ); //发件人地址(也就是你的邮箱地址)
$mail ->fromname = c( 'mail_fromname' ); //发件人姓名
$mail ->addaddress( $to , "尊敬的客户" );
$mail ->wordwrap = 50; //设置每行字符长度
$mail ->ishtml(c( 'mail_ishtml' )); // 是否html格式邮件
$mail ->charset=c( 'mail_charset' ); //设置邮件编码
$mail ->subject = $title ; //邮件主题
$mail ->body = $content ; //邮件内容
$mail ->altbody = "您好" ; //邮件正文不支持html的备用显示
return ( $mail ->send());
}
|
添加配置文件config.php
1
2
3
4
5
6
7
8
9
10
11
|
// 配置邮件发送服务器
'mail_host' => 'smtp.qq.com' , //smtp服务器的名称
'mail_smtpauth' =>true, //启用smtp认证
'mail_username' => '12345678@qq.com' , //你的邮箱名
'mail_from' => '12345678@qq.com' , //发件人地址
'mail_fromname' => '12345678@qq.com' , //发件人姓名
'mail_password' =>'xxxxxx, //邮箱密码
'mail_charset' => 'utf-8' , //设置邮件编码
'mail_ishtml' =>true, // 是否html格式邮件
'mail_port' => '465' , //设置ssl连接smtp服务器的远程服务器端口号
'mail_secure' => 'ssl' , //设置使用ssl加密方式登录鉴权
|
最后就是使用phpmailer发送邮件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!doctype html>
<html lang= "en" >
<head>
<meta charset= "utf-8" >
<title>document</title>
</head>
<body>
<form action= "/index.php/admin/test/add" method= "post" enctype= "multipart/form-data" >
邮箱:<input type= "text" id= "mail" name= "mail" />
标题:<input type= "text" id= "title" name= "title" />
内容<input type= "text" id= "content" name= "content" />
<input type= "submit" value= "发送" />
</form>
</body>
</html>
|
1
2
3
4
5
6
|
public function add(){
if (sendmail( $_post [ 'mail' ], $_post [ 'title' ], $_post [ 'content' ]))
echo "发送成功" ;
else
echo "发送失败" ;
}
|
原文链接:https://segmentfault.com/a/1190000012390279