unbantu 系統下 運用phpMailer

1.下載phpMailer

https://yunpan.cn/cSbdkN5bqdQQh (提取碼:ef37)

2.找出class.phpmailer.php和class.smtp.php文件放到你的項目的文件夾下

3.先上代碼然後在解釋(見註釋)

/**
* Simple example script using PHPMailer with exceptions enabled
* @package phpmailer
* @version $Id$
*/

require 'class.phpmailer.php';
require'class.smtp.php';

try {
    $mail = new PHPMailer(true); //New instance, with exceptions enabled

    $body             = file_get_contents('contents.html');
    $body             = preg_replace('/\\\\/','', $body); //Strip backslashes
    // $body="asdasdasdasdasd";

    $mail->IsSMTP();                           // tell the class to use SMTP
    $mail->SMTPAuth   = true;                  // enable SMTP authentication
    $mail->Port       = 25;                    // set the SMTP server port
    $mail->Host       = "smtp.163.com"; // 如果是qq  爲smtp.qq.com
    $mail->Username   = "**********@163.com";     // SMTP  username用戶名
    $mail->Password   = "*******";            // SMTP server password密碼(不是自己登錄郵箱的密碼是開通SMTP時自己重新設定的那個密碼)

    //$mail->IsSendmail();  // tell the class to use Sendmail

    $mail->AddReplyTo("****@163.com","First Last");

    $mail->From       = "[email protected]";
    $mail->FromName   = "哈哈哈哈哈哈哈";

    $to = "[email protected]";

    $mail->AddAddress($to);

    $mail->Subject  = "First PHPMailer Message";

    $mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
    $mail->WordWrap   = 80; // set word wrap

    $mail->MsgHTML($body);

    $mail->IsHTML(true); // send as HTML

    $mail->Send();
    echo 'Message has been sent.';
} catch (phpmailerException $e) {
    echo $e->errorMessage();
}

發佈了35 篇原創文章 · 獲贊 32 · 訪問量 9萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章