首页 > 开发 > PHP > 正文

php发送html格式文本邮件的方法

2024-05-04 23:36:06
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php发送html格式文本邮件的方法,涉及MIME版本、字符集、内容类型等的相关设置技巧,需要的朋友可以参考下

本文实例讲述了php发送html格式文本邮件的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <?php  
  2. $to = "simon@mailexample.com, elaine@mailexample.com"//设置收件人  
  3. $subject = "This is a test"//设置E-mail主题  
  4. //设置E-mail内容: 
  5. $message = "  
  6. <html>  
  7. <head>  
  8. <title>This is a test</title>  
  9. </head>  
  10. <body>  
  11. <p>Dear all,</p>  
  12. <p>This is a test for HTML mail sending.</p>  
  13. </body>  
  14. </html>  
  15. ";  
  16. //设置邮件头Content-type header  
  17. $header = "MIME-Version: 1.0/r/n"//设置MIME版本  
  18. $header .= "Content-type: text/html; charset=iso-8859-1/r/n"//设置内容类型和字符集  
  19. //设置收件人、发件人信息  
  20. $header .= "To: Simon <simon@mailexample.com>, Elaine <elaine@mailexample.com>/r/n"//设置收件人  
  21. $header .= "From: PHP Tester <phptester@163.com>/r/n"//设置发件人  
  22. $header .= "Cc: Peter@mailexample.com/r/n"// 设置抄送  
  23. $header .= "Bcc: David@mailexample.com/r/n"// 设置暗抄  
  24. echo $header;  
  25. mail($to$subject$message$header); //发送邮件  
  26. ?> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表