用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php mail邮件发送带附件功能

时间:2015-01-23  来源:西部数据  作者:西部数据
  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>"; 
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门