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

php使用pear_smtp发送邮件

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-28 17:24:35 浏览: 评论:0 

这篇文章主要介绍了php使用pear_smtp发送邮件的相关资料,内容很丰富,感兴趣的小伙伴们可以参考一下。

PHP自带的mail函数比较蛋疼,在win下配置了sendmail还是无法发送邮件。而使用第三方的pear/mail可以直接通过smtp连接邮件发送服务器。如(smtp.163.com)。从而没有必要在本机上安装sendmail等类似软件。

确保PEAR Mail包已经安装。

  1. <?php  
  2.  require_once "vendor/autoload.php";  
  3.     
  4.  $from = "test<test@163.com>";  
  5.  $to = "test <test@outlook.com>";  
  6.  $subject = "Hi!";  
  7.  $body = "Hi,\n\nHow are you?";  
  8.     
  9.  $host = "smtp.163.com";  
  10. $port = "25";  
  11.  $username = "test@163.com";  
  12.  $password = "test123";  
  13.     
  14.  $headers = array ('From' => $from,  
  15.   'To' => $to,  
  16.   'Subject' => $subject);  
  17.  $smtp = Mail::factory('smtp',  
  18.   array ('host' => $host,  
  19.    'port' => $port,  
  20.    'auth' => true,  
  21.   // 'debug'=>true,  
  22.    'username' => $username,  
  23.    'password' => $password));  
  24.     
  25.  $mail = $smtp->send($to$headers$body);  
  26.     
  27.  if (PEAR::isError($mail)) {  
  28.   echo("<p>" . $mail->getMessage() . "</p>");  
  29.  } else {  
  30.   echo("<p>Message successfully sent!</p>");  
  31.  }  
  32.  ?> 

这是非加密方式。

PHPer 多数使用 mail 函数来发送邮件,但我们可以使用其他的 SMTP 服务器来发送,这里推荐使用 PEAR's mail package 来发送邮件。

  1. $subject = "This mail is sent from SMTP."
  2. $mail_body = "This is the body of the mail which is sent using SMTP."
  3. $from = "From: From Name <fromaddress@xpertdeveloper.com>";  
  4. $to = "To: To Name <toaddress@xpertdeveloper.com>";  
  5. $receiver = "toaddress@xpertdeveloper.com";  
  6.    
  7. // Setting up the headers 
  8. $headers["From"] = $from;  
  9. $headers["To"] = $to;  
  10. $headers["Subject"] = $subject;  
  11. $headers["Reply-To"] = "reply@address.com";  
  12. $headers["Content-Type"] = "text/plain; charset=ISO-2022-JP";  
  13. $headers["Return-path"] = "returnpath@address.com";  
  14.    
  15. // Setting up the SMTP setting 
  16. $smtp_info["host"] = "smtp.server.com";  
  17. $smtp_info["port"] = "25";  
  18. $smtp_info["auth"] = true;  
  19. $smtp_info["username"] = "smtp_user";  
  20. $smtp_info["password"] = "smtp_password";  
  21.    
  22. // Creating the PEAR mail object : 
  23. $mail_obj =& Mail::factory("smtp"$smtp_info);  
  24.    
  25. // Sending the mail now 
  26. $mail_sent = $mail_obj->send($receiver$headers$mail_body);  
  27.    
  28. // If any error the see for that here: 
  29. if (PEAR::isError($mail_sent)) { print($mail_sent->getMessage());} 

第三个案例:

在使用以下源代码前,请配置好pear的路径,下载net_smtp包

在php.ini文件中根据你的操作系统选择不同的设置方法

  1. ; UNIX: "/path1:/path2" 
  2. include_path = ".:./php/pear" 
  3. ; Windows: "\path1;\path2" 
  4. ;include_path = ".;c:\php\pear" 
  5. require 'Net/SMTP.php'
  6. $host = '126.com';//smtp服务器的ip或域名 
  7. $username'arcow';//登陆smtp服务器的用户名 
  8. $password'secret';//登陆smtp服务器的密码 
  9. $from = 'arcow@126.com';  //谁发的邮件 
  10. $rcpt = array('test@test.com''arcow@126.com');//可设多个接收者 
  11. $subj = "Subject: 你是谁\n";//主题 
  12. $body = "test it";//邮件内容 
  13. /* 建立一个类 */ 
  14. if (! ($smtp = new Net_SMTP($host))) { 
  15.   die("无法初始化类Net_SMTP!\n"); 
  16. /* 开始连接SMTP服务器*/ 
  17. if (PEAR::isError($e = $smtp->connect())) { 
  18.   die($e->getMessage() . "\n"); 
  19. /* smtp需要身份验证 */ 
  20. $smtp->auth($username,$password,"PLAIN"); 
  21. /*设置发送者邮箱 */ 
  22. if (PEAR::isError($smtp->mailFrom($from))) { 
  23.   die("无法设置发送者邮箱为 <$from>\n"); 
  24. /* 设置接收邮件者 */ 
  25. foreach ($rcpt as $to) { 
  26.   if (PEAR::isError($res = $smtp->rcptTo($to))) { 
  27.     die("邮件无法投递到 <$to>: " . $res->getMessage() . "\n"); 
  28.   } 
  29. /* 开始发送邮件内容 */ 
  30. if (PEAR::isError($smtp->data($subj . "\r\n" . $body))) { 
  31.   die("Unable to send data\n"); 
  32. /* 断开连接 */ 
  33. $smtp->disconnect(); 
  34. echo "发送成功!"
  35. ?> 

以上就是本文的全部内容,php利用pear_smtp发送邮件的三个案例,希望对大家学习php程序设计有所帮助。

Tags: pear_smtp

分享到: