PHP 使用 phpmailer 发送电子邮件( C 中使用 gets() 提示 warning- this program uses gets(), which is unsafe.)
- 技术交流
- 2024-10-26 01:20:01
PHP 使用 phpmailer 发送电子邮件( C 中使用 gets() 提示 warning: this program uses gets(), which is unsafe.)
phpMailer 是一个非常强大的 ph p发送邮件类,可以设定发送邮件地址、回复地址、邮件主题、html网页,上传附件,并且使用起来非常方便。
phpMailer 的特点:
1、在邮件中包含多个 TO、CC、BCC 和 REPLY-TO。2、平台应用广泛,支持的 SMTP 服务器包括 Sendmail、qmail、Postfix、Gmail、Imail、Exchange 等等。3、支持嵌入图像,附件,HTML 邮件。4、可靠的强大的调试功能。5、支持 SMTP 认证。6、自定义邮件头。7、支持 8bit、base64、binary 和 quoted-printable 编码。phpmailer 安装或者下载方式:
1、从 github 上下载: github.com/PHPMailer/PHPMailer/
2、使用 composer 安装:
composer require phpmailer/phpmailer发送之前需要拥有自己的邮件服务器,测试的时候其实用自己申请的免费邮箱最方便了,不需要自己再搭建服务器了,可能要配置邮箱的SMTP服务,大部分公共邮箱(163、qq等)为了安全默认是关闭的。
网易邮箱配置如下图:
QQ 邮箱相关配置如下图:
邮箱POP3服务器(端口995)SMTP服务器(端口465或587)qq.compop.qq.comsmtp.qq.com当然除了网易和 QQ 邮箱其他邮箱也是可以的,下面给出 php 代码示例:
实例<?phpuse PHPMailer\PHPMailer\PHPMailer;use PHPMailer\PHPMailer\Exception;require './src/Exception.php';require './src/PHPMailer.php';require './src/SMTP.php';$mail = new PHPMailer(true); // Passing `true` enables exceptionstry { //服务器配置 $mail->CharSet ="UTF-8"; //设定邮件编码 $mail->SMTPDebug = 0; // 调试模式输出 $mail->isSMTP(); // 使用SMTP $mail->Host = 'smtp.163.com'; // SMTP服务器 $mail->SMTPAuth = true; // 允许 SMTP 认证 $mail->Username = '邮箱用户名'; // SMTP 用户名 即邮箱的用户名 $mail->Password = '密码或者授权码'; // SMTP 密码 部分邮箱是授权码(例如163邮箱) $mail->SMTPSecure = 'ssl'; // 允许 TLS 或者ssl协议 $mail->Port = 465; // 服务器端口 25 或者465 具体要看邮箱服务器支持 $mail->setFrom('xxxx@163.com', 'Mailer'); //发件人 $mail->addAddress('aaaa@126.com', 'Joe'); // 收件人 //$mail->addAddress('ellen@example.com'); // 可添加多个收件人 $mail->addReplyTo('xxxx@163.com', 'info'); //回复的时候回复给哪个邮箱 建议和发件人一致 //$mail->addCC('cc@example.com'); //抄送 //$mail->addBCC('bcc@example.com'); //密送 //发送附件 // $mail->addAttachment('../xy.zip'); // 添加附件 // $mail->addAttachment('../thumb-1.jpg', 'new.jpg'); // 发送附件并且重命名 //Content $mail->isHTML(true); // 是否以HTML文档格式发送 发送后客户端可直接显示对应HTML内容 $mail->Subject = '这里是邮件标题' . time(); $mail->Body = '<h1>这里是邮件内容</h1>' . date('Y-m-d H:i:s'); $mail->AltBody = '如果邮件客户端不支持HTML则显示此内容'; $mail->send(); echo '邮件发送成功';} catch (Exception $e) { echo '邮件发送失败: ', $mail->ErrorInfo;}发送完带附件的邮件界面如下:
文章来源:www.liminghulian.com/article/98
PHP 使用 phpmailer 发送电子邮件( C 中使用 gets() 提示 warning- this program uses gets(), which is unsafe.)由讯客互联技术交流栏目发布,感谢您对讯客互联的认可,以及对我们原创作品以及文章的青睐,非常欢迎各位朋友分享到个人网站或者朋友圈,但转载请说明文章出处“PHP 使用 phpmailer 发送电子邮件( C 中使用 gets() 提示 warning- this program uses gets(), which is unsafe.)”