【PHP】PHP Mailer 发送邮件采坑记录
2021-02-03 14:14
标签:dad sub mfs 方法 图片 min send 一个 chm 项目需要新开发一个发邮箱功能,以前做过,以为信手拈来,没想到花了两个小时,记录踩的坑 这段代码是可以直接执行的,遇到的问题主要是connect time out,通过以下方法处理 发送邮箱的前提,是需要有个发送的账号,需要开启SMTP服务,开启后会有一个授权码,有些邮箱服务账号认证是需要使用授权码的(我使用的就是授权码发送) 【PHP】PHP Mailer 发送邮件采坑记录 标签:dad sub mfs 方法 图片 min send 一个 chm 原文地址:https://www.cnblogs.com/lanse1993/p/13156075.html $mail = new PHPMailer();
$mail->SMTPDebug = SMTP::DEBUG_SERVER; // Enable verbose debug output
$mail->isSMTP(); // Send using SMTP
$mail->SMTPSecure = ‘ssl‘;
$mail->Host = ‘smtp.163.com‘; // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = ‘xxx@163.com‘; // SMTP username
$mail->Password = ‘邮箱开启SMTP后的授权码‘; // SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; // Enable TLS encryption;
$mail->Port = 465; // TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above
$mail->setFrom(‘dongfanglong1993@163.com‘, ‘Heyw‘);
$mail->addAddress(‘xxx@qq.com‘, ‘Lanse93‘); // Add a recipient
$mail->addAttachment(‘./upload/contract/1.docx‘); // Add attachments
$mail->Subject = ‘邮箱标题‘;
$mail->Body = ‘邮箱内容‘;
$mail->send();
$mail->SMTPSecure = ‘ssl‘;
$mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS;
上一篇:JS中REDUCE方法应用
下一篇:JS中三大对象
文章标题:【PHP】PHP Mailer 发送邮件采坑记录
文章链接:http://soscw.com/index.php/essay/50450.html