当前位置:首页 > PHP教程 > php应用 > 列表

php mailer类调用远程SMTP服务器发送邮件实现方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-13 10:32:57 浏览: 评论:0 

本文实例讲述了php mailer类调用远程SMTP服务器发送邮件实现方法,分享给大家供大家参考,具体如下:

php mailer 是一款很好用的php电子邮件发送类模块,可以调用本地的smtp发送电子邮件,也可以调用远程的smtp发送电子邮件,但是使用时需要注意一些事项,否则就会造成发送失败,或者根本不能调用的情况,本文就我在使用这个类时,遇到的问题和解决办法进行展开,简要说明一下php mailer的用法,及注意事项。

下载之后,将这个文件,即class.phpmailer.php 放到你的工程的某个目录下,在需要发送邮件的地方这样写:

  1. <?php 
  2. require 'class.phpmailer.php'
  3. try { 
  4.   $mail = new PHPMailer(true); 
  5.   $body = file_get_contents('contents.html'); //邮件的内容写到contents.html页面里了 
  6.   $body = preg_replace('//////',''$body); //Strip backslashes 
  7.   $mail->IsSMTP(); // tell the class to use SMTP 
  8.   $mail->SMTPAuth  = true; // enable SMTP authentication 
  9.   $mail->Port = 25; // set the SMTP server port 
  10.   $mail->Host = "mail.yourdomain.com"// 远程SMTP服务器 
  11.   $mail->Username = "yourname@yourdomain.com"// 远程SMTP 服务器上的用户名 
  12.   $mail->Password  = "yourpassword"// 你的远程SMTP 服务器上用户对应的密码 
  13.   //$mail->IsSendmail(); //告诉这个类使用Sendmail组件,使用的时候如果没有sendmail组建就要把这个注释掉,否则会有 
  14.   $mail->AddReplyTo("yourname@yourdomain.com","First Last"); 
  15.   $mail->From    = "fromname@yourdomain.com"
  16.   $mail->FromName  = "First Last"
  17.   $to = "toname@domain.com"
  18.   $mail->AddAddress($to); 
  19.   $mail->Subject = "First PHPMailer Message"
  20.   $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"// optional, comment out and test 
  21.   $mail->WordWrap = 80; // set word wrap 
  22.   $mail->MsgHTML($body); 
  23.   $mail->IsHTML(true); // send as HTML 
  24.   $mail->Send(); 
  25.   echo 'Message has been sent.'
  26. } catch (phpmailerException $e) { 
  27.   echo $e->errorMessage(); 
  28. ?> 

注意:上面那个$mail->IsSendmail();  需要注释掉,否则如果没有sendmail组件的话,会提示 “Could  not execute: /var/qmail/bin/sendmail ”的错误!

Tags: mailer SMTP发送邮件

分享到: