第7章3rdpartyApplication
安裝
git clone https://github.com/Synchro/PHPMailer.git /srv/php/lib/php/PHPMailer
SMTP傳送郵件
<?php /** * Simple example script using PHPMailer with exceptions enabled * @package phpmailer * @version $Id: chapter.application.xml 662 2013-08-14 02:46:24Z netkiller $ */ require `PHPMailer/class.phpmailer.php`; try { $mail = new PHPMailer(true); //New instance, with exceptions enabled $body = file_get_contents(`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 server $mail->Username = "name@domain.com"; // SMTP server username $mail->Password = "password"; // SMTP server password $mail->IsSendmail(); // tell the class to use Sendmail $mail->AddReplyTo("name@domain.com","First Last"); $mail->From = "name@domain.com"; $mail->FromName = "First Last"; $to = "someone@example...com"; $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(); }
原文出處:Netkiller 系列 手札
本文作者:陳景峰
轉載請與作者聯絡,同時請務必標明文章原始出處和作者資訊及本宣告。
相關文章
- 第 0 天/第 1 天/第 2 天:雲時代的軟體生命週期
- 軟體開發流程------閱讀《構建之法》 第5.5 第6 第7章
- 第2關
- 第15課
- 讀書筆記之《現代軟體工程》第5.5章、第6章、第7章筆記軟體工程
- 《C++程式設計教程(第3版)》——第1章,第2節從C到C++C++程式設計
- 第k大元素
- 第 1 章 JavaJava
- 第1章NginxNginx
- 工作第9天~
- 第4課 SVN
- 中國網際網路 世界第1還是第57薦
- 專家審讀第5期——《演算法(第4版)》演算法
- 最多金的程式語言Top10:Python第3,R第10,你猜第1是誰?Python
- 《Android應用測試指南》——第2章,第2.1節JunitAndroid
- 《演算法(英文版·第4版)》勘誤(第869頁)演算法
- 《演算法(英文版·第4版)》勘誤(第891頁)演算法
- 《演算法(英文版·第4版)》勘誤(第734頁)演算法
- 《演算法(英文版·第4版)》勘誤(第653頁)演算法
- 《演算法(英文版·第4版)》勘誤(第678頁)演算法
- 《演算法(英文版·第4版)》勘誤(第621頁)演算法
- 《演算法(英文版·第4版)》勘誤(第640頁)演算法
- 《演算法(英文版·第4版)》勘誤(第573頁)演算法
- 第 3 節:變數變數
- 第6章 Java APIJavaAPI
- 第 10 節 指標指標
- 第3章筆記筆記
- 第4章函式函式
- 第1章 Why RustRust
- 第 6 章 表格元素
- 第 7 章 文件元素
- 第 8 章 嵌入元素
- 第1章 jQuery 起步jQuery
- 第1章jQuery起步jQuery
- 第10章MySQLConnectorsMySql
- 第14章PhpDigPHP
- 第6章minifierNifi
- 精通Perl(第2版)