PHP使用PHPMailer发送邮件的简单使用方法

PHP使用PHPMailer发送邮件的简单使用方法。
最近需要用到发送邮件的功能,原本是用PHP自带的mail()函数发送的。php mail()这个方法非常简单、方便、易用,但是除了网易邮箱、QQ邮箱、GMAIL邮箱等常用的邮箱可以收到之外,经测试HOTMAIL、TOM、LIVE等邮箱是收不到此类邮件的。所以就转而使用PHPMailer这个强大的邮件发送类。

使用官方自带的一些例子,有些会报 Mailer Error: Could not instantiate mail function. 这个错误。

 3 function mailto($nickname, $address, $id, $activation_code)

 4 {

 5 date_default_timezone_set('PRC'); 

 6 include_once("class.phpmailer.php");

 7 

 8 $mail = new PHPMailer(); // defaults to using php "mail()"

 9 $mail->IsSMTP();

10 $mail->Host = "smtp.163.com"; // SMTP 服务器 

11 $mail->SMTPAuth = true; // 打开SMTP 认证 

12 $mail->Username = "[email protected]"; // 用户名

13 $mail->Password = "yourpassword"; // 密码

14 

15 //$body = file_get_contents('application/views/nmra/register.html');

16 //$body = preg_replace('/\\\\/','', $body); //Strip backslashes

17 $body = '<p><body style="margin: 10px;"></p>';

18 $body .= '<div style="width: 640px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; ">';

19 $body .= '<div align="center"><img src="images/phpmailer.gif" style="height: 90px; width: 340px"></div>';

20 $body .= '<p>'.$nickname.',您好。</p>';

21 $body .= '<p>恭喜你成为脚本学堂的第'.$id.'名会员。</p>';

22 $body .= '<p>脚本学堂 是一个程序猿、攻城狮、设计狮和开发者们技术交流、话题讨论的社区。希望在这里你能找到感兴趣的话题与志同道合的朋友。</p>';

23 $body .= '请点击以下链接验证您的邮箱,请注意域名为nowamagic.net:<a href="http://www.jbxue.com /librarys/accounts/activation/?code="'.$activation_code.'" target="_blank">http://www.jbxue.com /librarys/accounts/activation/?code='.$activation_code.'</a>';

24 $body .= '<p>顺祝工作学习愉快,生活舒心。</p>';

25 $body .= '</div></body>';

26 //echo $body;

27 $mail->AddReplyTo("[email protected]","Gonn");

28 $mail->SetFrom('[email protected]', 'Gonn');

29 $mail->AddReplyTo("[email protected]","Gonn");

30 $address = "[email protected]";

31 //$address = "[email protected]";

32 $mail->AddAddress($address, $nickname);

33 

34 $subject = "收到来自脚本学堂的邮件";

35 $mail->Subject = "=?UTF-8?B?".base64_encode($subject)."?=";

36 // optional, comment out and test

37 $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; 

38 $mail->MsgHTML($body);

39 

40 //$mail->AddAttachment("images/phpmailer.gif"); // attachment

41 //$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment

42 

43 if(!$mail->Send()) {

44 //echo "Mailer Error: " . $mail->ErrorInfo;

45 } 

46 else {

47 //echo "Message sent!";

48 }

49 }

使用的时候只要引入两个PHP类,然后自己写个方法就OK了,两个类很小,发送邮件速度也很快。

PHPMailer 是一个功能强大的邮件类,其主要功能特点:
支持邮件 s/mime加密的数字签名
支持邮件多个 TOs, CCs, BCCs and REPLY-TOs
可以工作在任何服务器平台,所以不用担心WIN平台无法发送邮件的问题的
支持文本/HTML格式邮件
可以嵌入image图像
对于邮件客户端不支持HTML阅读的进行支持
功能强大的发送邮件调试功能debug
自定义邮件header
冗余SMTP服务器支持
支持8bit, base64, binary, and quoted-printable 编码
文字自动换行
支持多附件发送功能
支持SMTP服务器验证功能
在Sendmail, qmail, Postfix, Gmail, Imail, Exchange 等平台测试成功
提供的下载文件中,包括内容详细的说明文档及示

你可能感兴趣的:(phpmailer)