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

php mail to 配置详解

发布:smiling 来源: PHP粉丝网  添加日期:2020-08-27 22:05:52 浏览: 评论:0 

本文为大家介绍下php mail to的配置方法,具体如下,需要的朋友可以参考下,代码如下:

  1. [mail function]  
  2. ; For Win32 only.  
  3. SMTP = mail3.focuschina.com  
  4. smtp_port = 25  
  5.  
  6. ; For Win32 only.  
  7. ;sendmail_from = me@example.com 

仅仅配置了如上的代码,没有用到用户名和密码,测试代码成功发送邮件

好读书,不求甚解。。以上

发送的测试代码:

  1. [php] view plaincopyprint?在CODE上查看代码片派生到我的代码片  
  2.  
  3. $subject = iconv('UTF-8''GBK'"邮件标题");  
  4. $message = iconv('UTF-8''GBK'"邮件内容发打发打发fasdfadsfasdf");  
  5. $from ='OA<noreply@made-in-china.com>';  
  6. $from = iconv('UTF-8''GBK'$from);  
  7. $headers = "From: " . $from . "\nContent-Type: text/html; charset=GBK; MIME-Version: 1.0'\n";  
  8. $to="xuedagong@163.com";  
  9. if(mail($to$subject$message,$headers)){  
  10. echo "Ok.";  
  11. }else{  
  12. echo "Fail.";  
  13. }  

Tags: php mail 配置

分享到: