程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 利用PHPMailer 來完成PHP的郵件發送 #轉載自:大菜鳥在雲端#,

利用PHPMailer 來完成PHP的郵件發送 #轉載自:大菜鳥在雲端#,

編輯:關於PHP編程

利用PHPMailer 來完成PHP的郵件發送 #轉載自:大菜鳥在雲端#,


利用PHPMailer 來完成PHP的郵件發送

1.首先是下載PHPMailer

http://code.google.com/a/apache-extras.org/p/phpmailer/

 

2.解壓

從中取出class.phpmailer.php 和 class.smtp.php 放到你的項目的文件夾,因為我們等下會引用到它們.

 

3.創建發送郵件的函數,其中你需要配置smtp服務器

復制代碼
function postmail($to,$subject = '',$body = ''){
    //Author:Jiucool WebSite: http://www.jiucool.com
    //$to 表示收件人地址 $subject 表示郵件標題 $body表示郵件正文
    //error_reporting(E_ALL);
    error_reporting(E_STRICT);
    date_default_timezone_set('Asia/Shanghai');//設定時區東八區
    require_once('class.phpmailer.php');
    include('class.smtp.php');
    $mail             = new PHPMailer(); //new一個PHPMailer對象出來
    $body            = eregi_replace("[\]",'',$body); //對郵件內容進行必要的過濾
    $mail->CharSet ="GBK";//設定郵件編碼,默認ISO-8859-1,如果發中文此項必須設置,否則亂碼
    $mail->IsSMTP(); // 設定使用SMTP服務
    $mail->SMTPDebug  = 1;                     // 啟用SMTP調試功能
    // 1 = errors and messages
    // 2 = messages only
    $mail->SMTPAuth   = true;                  // 啟用 SMTP 驗證功能
    $mail->SMTPSecure = "ssl";                 // 安全協議,可以注釋掉
    $mail->Host       = 'stmp.163.com';      // SMTP 服務器
    $mail->Port       = 25;                   // SMTP服務器的端口號
    $mail->Username   = 'wangliang_198x';  // SMTP服務器用戶名,PS:我亂打的
    $mail->Password   = 'password';            // SMTP服務器密碼
    $mail->SetFrom('[email protected]', 'who');
    $mail->AddReplyTo('[email protected]','who');
    $mail->Subject    = $subject;
    $mail->AltBody    = 'To view the message, please use an HTML compatible email viewer!'; // optional, comment out and test
    $mail->MsgHTML($body);
    $address = $to;
    $mail->AddAddress($address, '');
    //$mail->AddAttachment("images/phpmailer.gif");      // attachment
    //$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
    if(!$mail->Send()) {
        echo 'Mailer Error: ' . $mail->ErrorInfo;
    } else {
//        echo "Message sent!恭喜,郵件發送成功!";
    }
}
復制代碼

 

4. 使用函數

postmail('[email protected]','My subject','嘩啦啦');

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved