开发项目中,多多少少都会碰到邮件这个比较原始的功能,毕竟对于验证码或者后期的推广来说,是免费的!在Packagist里一搜:
使用的人还是比较多的;有了强大的composer,我们直接:composer require phpmailer/phpmailer
然后我们在公共函数里写个方法:sendMail,在需要的地方直接使用就可以了:
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
function sendMail()
{
$mail = new PHPMailer(true);
try {
//Server settings
$mail->SMTPDebug = 2; // Enable verbose debug output
$mail->isSMTP(); //使用SMTP服务
$mail->Host = 'smtp.163.com'; // 默认:smtp1.example.com;smtp2.example.com; 发送方的SMTP主服务器及备用服务器地址
$mail->SMTPAuth = true; // 是否使用身份验证
$mail->Username = 'xxx@163.com'; // SMTP username
$mail->Password = 'xxx'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 25; //默认是587 //163邮箱的ssl协议方式端口号是465/994
//Recipients
$mail->setFrom('xxx@163.com', 'Adam Lu');
$mail->addAddress('xxx@qq.com', 'xx'); // Add a recipient
// $mail->addAddress('ellen@example.com'); // Name is optional
// $mail->addReplyTo('info@example.com', 'Information');//设置回复人信息,指的是收件人收到邮件后,如果要回复,回复邮件将发送到的邮箱地址
// $mail->addCC('cc@example.com'); // 设置邮件抄送人,可以只写地址,上述的设置也可以只写地址(这个人也能收到邮件)
// $mail->addBCC('bcc@example.com'); // 设置秘密抄送人(这个人也能收到邮件)
//Attachments
// $mail->addAttachment('/var/tmp/file.tar.gz'); // 添加附件
// $mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
//Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = '验证码';
// $mail->Body = '邮件内容是<b>您的验证码是:123456</b>,不要告诉别人哦!';
$mail->Body = '欢迎关注:<div class="breadcrumb"> <a href="http://blog.adamlu.com.cn">陆雨博客</a> </div>';
$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;
}
}
?>
在其他类调用:
public function test3(){
// $tes = sendMail();//调用邮件-测试成功
print_r($tes);exit;
}
测试发送成功,使用起来也特别简单。
另外,使用filter_var()函数验证邮件地址使用,Web应用需要做的一件常见任务是检测用户
是否输入了一个有效的邮件地址。毫无疑问你可以在网上找到一些声称可以解决该问题的复杂的正则
表达式,但是最简单的方法是使用 PHP 的内建 filter_val() 函数。
<?php
filter_var('sgamgee@example.com', FILTER_VALIDATE_EMAIL);
//Returns "sgamgee@example.com". This is a valid email address.
filter_var('sauron@mordor', FILTER_VALIDATE_EMAIL);
// Returns boolean false! This is *not* a valid email address.
?>