当前位置:首页 > PHP教程 > php类库 > 列表

PHP邮件发送类PHPMailer用法实例详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-04-14 10:52:59 浏览: 评论:0 

这篇文章主要介绍了PHP邮件发送类PHPMailer用法,详细的讲述了安装及配置的方法与功能实现代码,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了PHP邮件发送类PHPMailer用法,并详细讲述了其具体的操作步骤。分享给大家供大家参考。具体步骤如下:

1.在服务器安装 sendmail

sudo apt-get install sendmail

2.启动 sendmail

sudo /etc/init.d/sendmail start

3.修改 php.ini

  1. [mail function]  
  2. SMTP = localhost  
  3. smtp_port = 25  
  4. sendmail_from = me@example.com  

4.Function sendMail函数如下

  1. <?php  
  2. /* 调用PHPMailer发送电邮  
  3. * @param String $receiver   收件人  
  4. * @param String $sender    发件人  
  5. * @param String $sender_name 发件人名称如为空则用发件人地址代替  
  6. * @param String $subject   邮件主题  
  7. * @param String $content   邮件内容  
  8. * @param boolean $ishtml    是否html电邮  
  9. * @param Array  $attachements 附件  
  10. * @return boolean  
  11. */ 
  12. function sendMail($receiver$sender$sender_name$subject$content$ishtml=true, $attachments=array()) {  
  13.   include_once "class-phpmailer.php";   
  14.    
  15.   if(emptyempty($receiver) || emptyempty($sender) || emptyempty($subject) || emptyempty($content)){  
  16.     return false;  
  17.   }  
  18.      
  19.   $mail = new PHPMailer();   
  20.    
  21.   //$mail->IsSMTP();        // 经smtp发送   
  22.   //$mail->Host = "smtp.gmail.com"; // SMTP 服务器  
  23.   //$mail->Port = 465;       // SMTP 端口  
  24.   //$mail->SMTPSecure = 'ssl';   // 加密方式  
  25.   //$mail->SMTPAuth = true;     // 打开SMTP认证  
  26.   //$mail->Username = "username";  // 用户名  
  27.   //$mail->Password = "password";  // 密码  
  28.    
  29.   $mail->IsMail();         // using PHP mail() function 有可能會出現這封郵件可能不是由以下使用者所傳送的提示  
  30.          
  31.   $mail->From = $sender;      // 发信人   
  32.   $mail->FromName = $sender_name;  // 发信人别名   
  33.   $mail->AddReplyTo($sender);    // 回覆人  
  34.   $mail->AddAddress($receiver);   // 收信人   
  35.    
  36.   // 以html方式发送  
  37.   if($ishtml){  
  38.     $mail->IsHTML(true);  
  39.   }  
  40.    
  41.   // 发送附件  
  42.   if($attachments){  
  43.     if(is_array($attachments)){  
  44.       $send_attachments = array();  
  45.    
  46.       $tmp_attachments = array_slice($attachments,0,1);  
  47.       if(!is_array(array_pop($tmp_attachments))){  
  48.         if(isset($attachments['path'])){  
  49.           array_push($send_attachments$attachments);            
  50.         }else{  
  51.           foreach($attachments as $attachment){  
  52.             array_push($send_attachmentsarray('path'=>$attachment));  
  53.           }  
  54.         }  
  55.       }else{  
  56.         $send_attachments = $attachments;  
  57.       }  
  58.    
  59.       foreach($send_attachments as $attachment){  
  60.         $attachment['name'] = isset($attachment['name'])? $attachment['name'] : null;  
  61.         $attachment['encoding'] = isset($attachment['encoding'])? $attachment['encoding'] : 'base64';  
  62.         $attachment['type'] = isset($attachment['type'])? $attachment['type'] : 'application/octet-stream';  
  63.         if(isset($attachment['path']) && file_exists($attachment['path'])){  
  64.           $mail->AddAttachment($attachment['path'],$attachment['name'],$attachment['encoding'],$attachment['type']);  
  65.         }  
  66.       }  
  67.     }elseif(is_string($attachments)){  
  68.       if(file_exists($attachments)){  
  69.         $mail->AddAttachment($attachments);  
  70.       }  
  71.     }  
  72.   }  
  73.    
  74.   $mail->Subject = $subject// 邮件标题  
  75.   $mail->Body   = $content// 邮件內容  
  76.   return $mail->Send();   
  77. }  
  78.    
  79. // DEMO示例如下:  
  80. $receiver = 'receiver@test.com';  
  81. $sender = 'sender@test.com';  
  82. $sender_name = 'sender name';  
  83. $subject = 'subjecct';  
  84. $content = 'content';  
  85.    
  86. // 四种格式都可以  
  87. $attachments = 'attachment1.jpg';  
  88. $attachments = array('path'=>'attachment1.jpg''name'=>'附件1.jpg');  
  89. $attachments = array('attachment1.jpg','attachment2.jpg','attachment3.jpg');  
  90. $attachments = array(  
  91.   array('path'=>'attachment1.jpg''name'=>'附件1.jpg'),  
  92.   array('path'=>'attachment2.jpg''name'=>'附件2.jpg'),  
  93.   array('path'=>'attachment3.jpg''name'=>'附件3.jpg'),  
  94. ); //www.phpfensi.com 
  95. $flag = sendMail($receiver$sender$sender_name$subject$content, true, $attachments);  
  96. echo $flag;  
  97. ?>  

希望本文所述对大家PHP程序设计的学习有所帮助。

Tags: PHP邮件发送类 PHPMailer

分享到: