PHPMailer:Featured email transfer class for PHP

來源:互聯網
上載者: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/

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.