php脚本发送邮件

第一天在写东西,就随便写点吧………(写的不是很专业,不要嫌弃………)
-----------------------------我是分割线--------------------------------
在百度上面搜索发现基本上每个人用的方法都不一样,一般github的东西会比较好用,来给你们安利!项目地址https://github.com/PHPMailer/PHPMailer 复制这个地址,然后在终端:git clone https://github.com/PHPMailer/PHPMailer 就可以把它下到当前目录

在这个PHPMailer目录下,新建一个text.php文件,内容:

SMTPDebug = 3;                              // Enable verbose debug output
$mail->isSMTP();                                      // �使用SMTP协议
$mail->Host = 'smtp.qq.com';  // qq邮箱的服务器端地址
$mail->SMTPAuth = true;                              //SMTP 授权
$mail->Username = '要发送端邮箱@qq.com';                // 配置发送邮箱的用户
$mail->Password = '�mima';                          // 配置发送端邮箱密码
$mail->SMTPSecure = 'ssl';                            // Enable TLS encryption, `ssl` also accepted
$mail->Port = 465;                                    //qq邮箱的ssl的端口是465
$mail->setFrom('发送端邮箱@qq.com', 'Mailer');    //发送地址,昵称
$mail->addAddress('接收邮箱@qq.com', 'Joe User');    // 接收地址,昵称
// $mail->addAddress('[email protected]');              // Name is optional
// $mail->addReplyTo('[email protected]', 'Information');
// $mail->addCC('[email protected]');
// $mail->addBCC('[email protected]');
// $mail->addAttachment('/var/tmp/file.tar.gz');        // Add attachments
// $mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
$mail->isHTML(true);                                  // Set email format to HTML
// 主题
$mail->Subject = 'Here is the subject';$mail->Body    = 'This is the HTML message body**in bold!**';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';//内容
if(!$mail->send()) {    
     echo 'Message could not be sent.';    
     echo 'Mailer Error: ' . $mail->ErrorInfo;} 
else {   
      echo 'Message has been sent';
}
?>

-----------------------分割线---------------------

你可能感兴趣的:(php脚本发送邮件)