Home  >  Article  >  Backend Development  >  Send emails using Pear Mail

Send emails using Pear Mail

WBOY
WBOYOriginal
2016-07-25 09:08:321338browse
  1. error_reporting(E_ALL);
  2. require 'Mail.php';
  3. require 'Mail/mime.php';
  4. $text = "Text version of emailnMessage made with PHP";
  5. $html = 'HTML version of email
    ';
  6. $html .= 'Message made with ';
  7. $crlf = "n";
  8. $from = 'from_address@163.com';
  9. $to = 'to_address@qq.com';
  10. $password = '123456';
  11. $mail_config=array(
  12. "host"=>"smtp.163.com",
  13. "port"=>25,
  14. "auth"=>true,
  15. "username"=>$from,
  16. "password"=>$password,
  17. "from"=>$from,
  18. );
  19. $hdrs = array(
  20. 'From'=>$from,
  21. 'Subject'=>'Test HTMl Email with Embedded Image'
  22. );
  23. $mime = new Mail_mime($crlf);
  24. $mime->setTXTBody($text);
  25. $mime->addHTMLImage('php.gif','image/gif','12345',true);
  26. $mime->setHTMLBody($html);
  27. $body = $mime->get();
  28. $hdrs = $mime->headers($hdrs);
  29. $mail = Mail::factory('smtp',$mail_config);
  30. $succ = $mail->send($to,$hdrs,$body);
  31. if (PEAR::isError($succ))
  32. {
  33. echo 'Email sending failed: ' . $succ->getMessage();
  34. }
  35. else
  36. {
  37. echo 'Email sent succesfully';
  38. }
  39. ?>
复制代码


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php SMS interfaceNext article:php SMS interface