当前位置:首页 > PHP教程 > php应用 > 列表

php发送邮件函数mail 教程

发布:smiling 来源: PHP粉丝网  添加日期:2014-01-20 12:17:55 浏览: 评论:0 

好了下面我们来看看php发送邮件函数mail 教程,如果要使用mail函数能够正常使用我们还得配置php.ini里面的参数哦.

  1. <?php 
  2. //定义边界线 
  3. $boundary = uniqid( "" );  
  4. //生成邮件头 
  5. $header = "From: $fromnContent-type: multipart/mixed; 
  6. boundary="$boundary"nX-Mailer:PHPnX-Priority:3"; 
  7. //获取附件文件的MIME类型  
  8. $mimetype = mime_content_type('test.zip'
  9. //获取附件文件的名字  
  10. $attach = 'test.zip' 
  11. //对附件文件进行编码和切分 
  12. $fp = fopen($attach"r"); 
  13. $content = fread($fpfilesize($attach)); 
  14. $content = chunk_splitbase64_encode($content) ); 
  15. //生成邮件主体  
  16. $body =" 
  17. --$boundary 
  18. Content-type: text/plain; charset=iso-8859-1 
  19. Content-transfer-encoding: 8bit 
  20. $message 
  21. --$boundary 
  22. Content-Type: $mimeType; name=$filename 
  23. Content-Disposition: attachment; filename=$filename 
  24. Content-Transfer-Encoding: base64 
  25. $content 
  26. --$boundary--"; 
  27. //发送邮件 
  28. mail( $to$subject$body$header ); 
  29. ?> 

Tags: 发送邮件 函数 mail

分享到: