最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

php mail邮件发送带附件功能

时间:2014-06-09 16:40来源: 作者: 点击:
$pdfname = test.pdf ; $email = test@test.com ; $text = 您好,附件中是您需要的pdf文件。请点击下载。brahref=http://www.vcphp.comwww.vcphp.com/a ;//文本内容 $text = base64_encode ( $text ); //用base64方法把它编码 $text = c
  1. $pdfname="test.pdf"
  2. $email="test@test.com"
  3. $text = "您好,附件中是您需要的pdf文件。请点击下载。<br><a href=http://www.vcphp.com>www.vcphp.com</a>";         //文本内容 
  4. $text = base64_encode($text);     //用base64方法把它编码  
  5. $text = chunk_split($text);     //把这个长字符串切成由每行76个字符组成的小块 
  6. $subject = $pdfname;         //标题  
  7. $from = "admin@vcphp.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>"; 
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容