程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php mailer類調用遠程SMTP服務器發送郵件實現方法,mailersmtp

php mailer類調用遠程SMTP服務器發送郵件實現方法,mailersmtp

編輯:關於PHP編程

php mailer類調用遠程SMTP服務器發送郵件實現方法,mailersmtp


本文實例講述了php mailer類調用遠程SMTP服務器發送郵件實現方法。分享給大家供大家參考,具體如下:

php mailer 是一款很好用的php電子郵件發送類模塊,可以調用本地的smtp發送電子郵件,也可以調用遠程的smtp發送電子郵件,但是使用時需要注意一些事項,否則就會造成發送失敗,或者根本不能調用的情況,本文就我在使用這個類時,遇到的問題和解決辦法進行展開,簡要說明一下php mailer的用法,及注意事項。

首先下載phpmailer類庫文件,在這裡下載,只需一個資源分。 下載地址: http://www.bkjia.com/codes/27188.html

下載之後,將這個文件,即class.phpmailer.php 放到你的工程的某個目錄下,在需要發送郵件的地方這樣寫:

<?php
require 'class.phpmailer.php';
try {
  $mail = new PHPMailer(true);
  $body = file_get_contents('contents.html'); //郵件的內容寫到contents.html頁面裡了
  $body = preg_replace('//////','', $body); //Strip backslashes
  $mail->IsSMTP(); // tell the class to use SMTP
  $mail->SMTPAuth  = true; // enable SMTP authentication
  $mail->Port = 25; // set the SMTP server port
  $mail->Host = "mail.yourdomain.com"; // 遠程SMTP服務器
  $mail->Username = "[email protected]"; // 遠程SMTP 服務器上的用戶名
  $mail->Password  = "yourpassword"; // 你的遠程SMTP 服務器上用戶對應的密碼
  //$mail->IsSendmail(); //告訴這個類使用Sendmail組件,使用的時候如果沒有sendmail組建就要把這個注釋掉,否則會有
  $mail->AddReplyTo("[email protected]","First Last");
  $mail->From    = "[email protected]";
  $mail->FromName  = "First Last";
  $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();
}
?>

注意:上面那個$mail->IsSendmail();  需要注釋掉,否則如果沒有sendmail組件的話,會提示 “Could  not execute: /var/qmail/bin/sendmail ”的錯誤!

更多關於PHP相關內容感興趣的讀者可查看本站專題:《PHP針對XML文件操作技巧總結》、《php日期與時間用法總結》、《php面向對象程序設計入門教程》、《php字符串(string)用法總結》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》

希望本文所述對大家PHP程序設計有所幫助。

您可能感興趣的文章:

  • PHP借助phpmailer發送郵件
  • thinkphp使用phpmailer發送郵件的方法
  • phpmailer發送郵件之後,返回收件人是否閱讀了郵件的方法
  • phpmailer在服務器上不能正常發送郵件的解決辦法
  • php多種形式發送郵件(mail qmail郵件系統 phpmailer類)
  • PHP使用PHPMailer發送郵件的簡單使用方法
  • 解析php中用PHPMailer來發送郵件的示例(126.com的例子)
  • PHPMailer使用教程(PHPMailer發送郵件實例分析)
  • 使用 PHPMAILER 發送郵件實例應用
  • PHPMailer郵件類利用smtp.163.com發送郵件方法

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