youtube上关于swiftmailer资源太少,phpmailer反而较多。另外所找到的教程和代码一直不匹配,特喵的复制黏贴了一晚上都不成功。百度这方面的资源,根本没有啊没有啊!!本来想用swiftmailer,后来改成了phpmailer,倒也挺好用。
以后教程一定看官方的,看github的,在stack overflow的评论里,把自己绕晕了都没找到解决方法。
步骤:
1. 在github下载phpmailer zip 点这里狂戳PHPmailer链接
2. 将解压的文件放在你的php project根目录下
3. 同样还是在步骤1的链接中,往下翻,找到 a simple example,代码如下:
<?php
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
//$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp1.example.co