本文实例为大家分享了phpmailer实现php发邮件功能的具体代码,供大家参考,具体内容如下
第一步:打开网址下载phpmailer,phpmailer 需要 php 的 sockets 扩展支持,而登录 qq 邮箱 smtp 服务器则必须通过 ssl 加密的, php 还得包含 openssl 的支持。
第二步:使用 phpinfo() 函数查看 socket 和 openssl 扩展信息(wamp rver 默认启用了该扩展)。
openssl 如果没有开启请打开php.ini文件进行开启
首先检查php.ini中;extension=php_openssl.dll是否存在, 如果存在的话去掉前面的注释符‘;’, 如果不存在这行,那么添加extension=php_openssl.dll。
phpmailer 核心文件
第三步:qq 邮箱设置
所有的主流邮箱都支持 smtp 协议,但并非所有邮箱都默认开启,您可以在邮箱的设置里面手动开启。
第三方服务在提供了账号和密码之后就可以登录 smtp 服务器,通过它来控制邮件的中转方式。
第四步:开启 smtp 服务
选择 imap/smtp 服务,点击开启服务
第五步:验证密保
发送短信“配置邮件客户端”至1069-0700-69
第六步:获取授权码
smtp 服务器认证密码,需要妥善保管(ps:密码直接没有空格)
第七步:php发送邮件
基本代码
下面的代码演示了 phpmailer 的使用方法,注意 phpmailer 实例的配置过程。
// 引入phpmailer的核心文件require_once("phpmailer/class.phpmailer.php");require_once("phpmailer/class.smtp.php"); // 实例化phpmailer核心类$mail = new phpmailer();// 是否启用smtp的debug进行调试 开发环境建议开启 生产环境注释掉即可 默认关闭debug调试模式$mail->smtpdebug = 1;// 使用smtp鉴权方式发送邮件$mail->issmtp();// smtp需要鉴权 这个必须是true$mail->smtpauth = true;// 链接qq域名邮箱的服务器地址$mail->host = 'smtp.qq.com';// 设置使用ssl加密方式登录鉴权$mail->smtpcure = 'ssl';// 设置ssl连接smtp服务器的远程服务器端口号$mail->port = 465;// 设置发送的邮件的编码$mail->chart = 'utf-8';// 设置发件人昵称 显示在收件人邮件的发件人邮箱地址前的发件人姓名$mail->fromname = '发件人昵称';// smtp登录的账号 qq邮箱即可$mail->urname = '12345678@qq.com';// smtp登录的密码 使用生成的授权码$mail->password = '**********';// 设置发件人邮箱地址 同登录账号$mail->from = '12345678@qq.com';// 邮件正文是否为html编码 注意此处是一个方法$mail->ishtml(true);// 设置收件人邮箱地址$mail->addaddress('87654321@qq.com');// 添加多个收件人 则多次调用方法即可$mail->addaddress('87654321@163.com');// 添加该邮件的主题$mail->subject = '邮件主题';// 添加邮件正文$mail->body = '<h1>hello world</h1>';// 为该邮件添加附件$mail->addattachment('./example.pdf');// 发送邮件 返回状态$status = $mail->nd();
我在thinkphp5.0中使用代码
/*** 邮件发送* @param $to 接收人* @param string $subject 邮件标题* @param string $content 邮件内容(html模板渲染后的内容)* @throws exception* @throws phpmailerexception*/function nd_email($to,$subject='',$content=''){ vendor('phpmailer.phpmailerautoload');//require_once 'vendor/phpmailer/phpmailerautoload.php'; $mail = new phpmailer; $arr = db('config')->where('inc_type'特警怎么考,'smtp')->lect(); $config = convert_arr_kv($arr,'name','value'); $mail->chart = 'utf-8'; //设定邮件编码,默认iso-8859-1,如果发中文此项必须设置,否则乱码 $mail->issmtp();//enable smtp debugging// 0 = off (for production u)// 1 = cl20站推广ient messages// 2 = client and rver messages $mail->smtpdebug = 0;//调试输出格式//$mail->debugoutp周末随笔ut = 'html';//smtp服务器 $mail->host 水调歌头游泳= $config['smtp_rver'];//端口 - likely to be 25, 465 or 58湖北职业学院7 $mail->port = $config['smtp_port']; if($mail->port === 465) $mail->smtpcure = 'ssl';// 使用安全协议//whether to u smtp authentication $mail->smtpauth = true;//发送邮箱 $mail->urname = $config['smtp_ur'];//密码 $mail->password = $config['smtp_pwd'];//t who the message is to be nt from $mail->tfrom($config['smtp_ur'],$config['email_id']);//回复地址//$mail->addreplyto('replyto@example.com', 'first last');//接收邮件方 if(is_array($to)){ foreach ($to as $v){ $mail->addaddress($v); } }el{ $mail->addaddress($to); } $mail->ishtml(true);// nd as html//标题 $mail->subject = $subject;//html内容转换 $mail->msghtml($content);//replace the plain text body with one created manually//$mail->altbody = 'this is a plain-text message body';//添加附件//$mail->addattachment('images/phpmailer_mini.png');//nd the message, check for errors return $mail->nd();}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。
本文发布于:2023-04-06 17:48:15,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/af85f28f99041c2c1f16ace3bcde2062.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHPMAILER实现PHP发邮件功能.doc
本文 PDF 下载地址:PHPMAILER实现PHP发邮件功能.pdf
留言与评论(共有 0 条评论) |