最後更新:2016-06-01
來源:互聯網
上載者:User
關鍵字
PHPMailer:Featured email transfer class for PHP
phpMailer:Featured email transfer class for PHP PHPMailer 是一個很有用的 PHP 發送郵件的類。它支援使用 smtp 伺服器發送郵件,同時支援 Sendmail, qmail, Postfix, Imail, Exchange, Mercury, Courier 等郵件伺服器。SMTP伺服器的話還支援驗證,多SMTP發送(不過不太清楚有什麼用).郵件發送可以包括多個TO, CC, BCC and REPLY-TO,支援text和HTML兩種郵件格式,可以自動換行,支援各種格式的附件及圖片,自訂郵件標頭等基本的郵件功能。
由於 PHP 中只包含了一個 mail 函數,所以 PHPMailer 是對其很大的增強,相信是可以滿足很多人的需求的,呵呵。其主要包括兩個類檔案:用於實現發送郵件功能的 class.phpmailer.php 和 smtp 實現的 class.smtp.php 。然後還有可以實現多種錯誤輸出的檔案,以及很詳細的文檔。軟體發布遵循 LGPL 協議。
使用也很簡單,看下面的例子就明白了:
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // send via SMTP $mail->Host = "smtp1.site.com;smtp2.site.com"; // SMTP servers $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Username = "jswan"; // SMTP username $mail->PassWord = "secret"; // SMTP password 'www.cncms.com $mail->From = "from@email.com"; $mail->FromName = "Mailer"; $mail->AddAddress("josh@site.com","Josh Adams"); $mail->AddAddress("ellen@site.com"); // optional name $mail->AddReplyTo("info@site.com","Information");
$mail->WordWrap = 50; // set word wrap $mail->AddAttachment("/var/tmp/file.tar.gz"); // attachment $mail->AddAttachment("/tmp/image.jpg", "new.jpg"); $mail->IsHTML(true); // send as HTML
$mail->Subject = "Here is the subject"; $mail->Body = "This is the HTML body "; $mail->AltBody = "This is the text-only body";
if(!$mail->Send()) { echo "Message was not sent
"; echo "Mailer Error: " . $mail->ErrorInfo; exit; }
echo "Message has been sent";
詳見PHPMailer的首頁:http://phpmailer.sourceforge.net/