tp5发送email功能: PHPmailer
2021-06-17 05:04
标签:名称 content body tac from 发送邮件 pass str target 第一步:使用composer安装phpmailer 第二步:common.php写个发送邮件的函数 注意以上代码,由于composer安装的PHPmailer类在phpmailer包中因此实例化时正确路由是 new \phpmailer\PHPmailer() 第三步:控制器方法里写发送的内容 第四步:测试发送 博客链接:https://www.calm7.com/article/5.html tp5发送email功能: PHPmailer 标签:名称 content body tac from 发送邮件 pass str target 原文地址:http://www.cnblogs.com/madmadken/p/7267703.html
/**
* 系统邮件发送函数
* @param string $tomail 接收邮件者邮箱
* @param string $name 接收邮件者名称
* @param string $subject 邮件主题
* @param string $body 邮件内容
* @param string $attachment 附件列表
* @return boolean
* @author static7
public function email() {
$toemail=‘static7@qq.com‘;
$name=‘static7‘;
$subject=‘QQ邮件发送测试‘;
$content=‘恭喜你,邮件测试成功。‘;
send_mail($toemail,$name,$subject,$content);
}
文章标题:tp5发送email功能: PHPmailer
文章链接:http://soscw.com/index.php/essay/94894.html