Heim  >  Artikel  >  Backend-Entwicklung  >  用PHPMail类发送邮件

用PHPMail类发送邮件

WBOY
WBOYOriginal
2016-07-25 08:45:19991Durchsuche
  1. function send_mail ($title,$content,$from,$to,$charset='gbk',$attachment ='')
  2. {
  3. include '/class/PHPMail.class.php'; //百度两下
  4. header('Content-Type: text/html; charset='.$charset);
  5. $mail = new PHPMailer();
  6. $mail->CharSet = $charset; //设置采用gb2312中文编码
  7. $mail->IsSMTP(); //设置采用SMTP方式发送邮件
  8. $mail->Host = "smtp.qq.com"; //设置邮件服务器的地址
  9. $mail->Port = 25; //设置邮件服务器的端口,默认为25
  10. $mail->From = $from; //设置发件人的邮箱地址
  11. $mail->FromName = ""; //设置发件人的姓名
  12. $mail->SMTPAuth = true; //设置SMTP是否需要密码验证,true表示需要
  13. $mail->Username = $from; //设置发送邮件的邮箱
  14. $mail->Password = ""; //设置邮箱的密码
  15. $mail->Subject = $title; //设置邮件的标题
  16. $mail->AltBody = "text/html"; // optional, comment out and test
  17. $mail->Body = $content; //设置邮件内容
  18. $mail->IsHTML(true); //设置内容是否为html类型
  19. $mail->WordWrap = 50; //设置每行的字符数
  20. $mail->AddReplyTo("10000@qq.com","中国最强音"); //设置回复的收件人的地址
  21. $mail->AddAddress($to,"中国最强音"); //设置收件的地址
  22. if ($attachment != '') //设置附件
  23. {
  24. $mail->AddAttachment($attachment, $attachment);
  25. }
  26. if(!$mail->Send())
  27. {
  28. return false;
  29. } else {
  30. return true;
  31. }
复制代码

发送邮件, PHPMail


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
Vorheriger Artikel:php为图片加水印的代码 Nächster Artikel:PHP终极加密功能