Heim  >  Artikel  >  Backend-Entwicklung  >  有关phpmailer的用法

有关phpmailer的用法

WBOY
WBOYOriginal
2016-07-25 09:07:131110Durchsuche
  1. require("phpmailer/class.phpmailer.php");
  2. function smtp_mail( $sendto_email, $subject, $body, $extra_hdrs, $user_name){
  3. $mail = new PHPMailer();
  4. $mail->IsSMTP(); // send via SMTP
  5. $mail->Host = "200.162.244.66"; // SMTP servers
  6. $mail->SMTPAuth = true; // turn on SMTP authentication
  7. $mail->Username = "yourmail"; // SMTP username 注意:普通邮件认证不需要加 @域名
  8. $mail->Password = "mailPassword"; // SMTP password
  9. $mail->From = "yourmail@yourdomain.com"; // 发件人邮箱
  10. $mail->FromName = "管理员"; // 发件人
  11. $mail->CharSet = "GB2312"; // 这里指定字符集!
  12. $mail->Encoding = "base64";
  13. $mail->AddAddress($sendto_email,"username"); // 收件人邮箱和姓名
  14. $mail->AddReplyTo("yourmail@yourdomain.com","yourdomain.com");
  15. //$mail->WordWrap = 50; // set word wrap 换行字数
  16. //$mail->AddAttachment("/var/tmp/file.tar.gz"); // attachment 附件
  17. //$mail->AddAttachment("/tmp/image.jpg", "new.jpg");
  18. $mail->IsHTML(true); // send as HTML
  19. // 邮件主题
  20. $mail->Subject = $subject;
  21. // 邮件内容
  22. $mail->Body = "
  23. I love php
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