网站地图    收藏   

主页 > php专栏 > php应用 >

php mail邮件发送带附件功能 - php高级应用

来源:自学PHP网    时间:2014-11-27 22:16 作者: 阅读:

[导读] $pdfname=test pdf;$email=test@test com;$text=您好,附件中是您需要的pdf文件。请点击下载。brahref=http: www phpfensi comww...

php mail邮件发送带附件功能

  1. $pdfname="test.pdf"
  2. $email="test@test.com"
  3. $text = "您好,附件中是您需要的pdf文件。请点击下载。<br><a href=http://www.phpfensi.com>www.phpfensi.com</a>";         //文本内容 
  4. $text = base64_encode($text);     //用base64方法把它编码  
  5. $text = chunk_split($text);     //把这个长字符串切成由每行76个字符组成的小块 
  6. $subject = $pdfname;         //标题  
  7. $from = "admin@phpfensi.com";     //发送者  
  8. $to = $email;     //接受者 
  9. //附件  
  10. // 定义分界线  
  11. $boundary = "nextpart_".uniqid("");  
  12. $boundary2 = "nextpart_".uniqid("");  
  13. $headers = "to: $torn"
  14. $headers .= "from: $fromrn";  
  15. $headers .="mime-version: 1.0rn"
  16. $headers .= "content-type: multipart/mixed;  
  17.             boundary="----=_$boundary"rn"; 
  18. $read=file_get_contents($pdfname); 
  19. $read = base64_encode($read);     //用base64方法把它编码  
  20. $read = chunk_split($read);     //把这个长字符串切成由每行76个字符组成的小块 
  21. //现在我们可以建立邮件的主体  
  22. $body = "this is a multi-part message in mime format. 
  23. ------=_$boundary 
  24. content-type: multipart/alternative; 
  25.     boundary="----=_$boundary2"
  26. ------=_$boundary2 
  27. content-type: text/html; 
  28.     charset="gbk" 
  29. content-transfer-encoding: base64 
  30. $text 
  31. ------=_$boundary2-- 
  32. ------=_$boundary 
  33. content-type: application/octet-stream; 
  34.     charset="gbk"
  35.     name="$pdfname" 
  36. content-disposition: attachment; filename="$pdfname" 
  37. content-transfer-encoding: base64 
  38. $read 
  39. -------=_$boundary--"; 
  40. if(mail($to$subject,$body,$headers))  
  41.    echo "您需要的pdf文件(".$pdfname.")已经发往您的邮箱:".$to."。<br>请查收。";  
  42. else  
  43.    echo "抱歉,发送失败了。<br>"; 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论