欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php mail to 配置详解_PHP

程序员文章站 2022-05-21 16:45:31
...
复制代码 代码如下:
[mail function]
; For Win32 only.
SMTP = mail3.focuschina.com
smtp_port = 25

; For Win32 only.
;sendmail_from = me@example.com

仅仅配置了如上的代码,没有用到用户名和密码,测试代码成功发送邮件
好读书,不求甚解。。以上

发送的测试代码:
复制代码 代码如下:

[php] view plaincopyprint?在CODE上查看代码片派生到我的代码片

$subject = iconv('UTF-8', 'GBK', "邮件标题");
$message = iconv('UTF-8', 'GBK', "邮件内容发打发打发fasdfadsfasdf");
$from ='OA';
$from = iconv('UTF-8', 'GBK', $from);
$headers = "From: " . $from . "\nContent-Type: text/html; charset=GBK; MIME-Version: 1.0'\n";
$to="xuedagong@163.com";
if(mail($to, $subject, $message,$headers)){
echo "Ok.";
}else{
echo "Fail.";
}
相关标签: php 配置mail