<?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 smtp实现发送邮件功能(2)
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:https://www.heiqu.com/290205f034cd854fbe9d29676a48aac6.html