PHP速学教程(入门到精通)
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
这篇文章给大家介绍的内容是关于php使用PHPMailer如何发送邮件(附代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
本篇记录的是我的发邮件的代码整理。用phpmailer实现发邮件功能
下载phpmailer地址 https://github.com/PHPMailer/PHPMailer
<?php use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require './PHPMailer/src/Exception.php'; require './PHPMailer/src/PHPMailer.php'; require './PHPMailer/src/SMTP.php'; $mail = new PHPMailer(true); // Passing `true` enables exceptions try { //Server settings $mail->SMTPDebug = 2; // Enable verbose debug output $mail->isSMTP(); // Set mailer to use SMTP $mail->Host = 'smtp.qq.com'; // Specify main and backup SMTP servers $mail->SMTPAuth = true; // Enable SMTP authentication $mail->Username = 'xxx@qq.com'; // SMTP username $mail->Password = 'xxxx'; // SMTP password QQ邮箱授权码 $mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted $mail->Port = 587; // TCP port to connect to //Recipients $mail->setFrom('xxx@qq.com', 'Mailer'); $mail->addAddress('xxx@qq.com', 'Joe User'); // Add a recipient $mail->addAddress('xxx@qq.com'); // Name is optional $mail->addReplyTo('xxx@qq.com', 'Information'); $mail->addCC('xxx@qq.com'); $mail->addBCC('xxx@qq.com'); //Attachments //$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments //$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name //Content $mail->isHTML(true); // Set email format to HTML $mail->Subject = 'Email title'; $mail->Body = 'Email body'; $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; $mail->send(); echo 'Message has been sent'; } catch (Exception $e) { echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo; }
QQ邮箱授权码获取方式如下图:
相关文章推荐:
php免费学习视频:立即学习
踏上前端学习之旅,开启通往精通之路!从前端基础到项目实战,循序渐进,一步一个脚印,迈向巅峰!
已抢5241个
抢已抢72517个
抢已抢12401个
抢已抢44217个
抢已抢171937个
抢已抢80999个
抢