Heim  >  Artikel  >  Backend-Entwicklung  >  用Pear Mail发邮件

用Pear Mail发邮件

WBOY
WBOYOriginal
2016-07-25 09:08:321338Durchsuche
  1. error_reporting(E_ALL);
  2. require 'Mail.php';
  3. require 'Mail/mime.php';
  4. $text = "Text version of email\nMessage made with PHP";
  5. $html = 'HTML version of email
    ';
  6. $html .= 'Message made with 用Pear Mail发邮件 ';
  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. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn