手机
当前位置:查字典教程网 >编程开发 >php教程 >php mail to 配置详解
php mail to 配置详解
摘要:复制代码代码如下:[mailfunction];ForWin32only.SMTP=mail3.focuschina.comsmtp_por...

复制代码 代码如下:

[mail function]

; For Win32 only.

SMTP = mail3.focuschina.com

smtp_port = 25

; For Win32 only.

;sendmail_from = me@example.com

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

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

发送的测试代码:

复制代码 代码如下:

<?php

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

$subject = iconv('UTF-8', 'GBK', "邮件标题");

$message = iconv('UTF-8', 'GBK', "邮件内容发打发打发fasdfadsfasdf");

$from ='OA<noreply@made-in-china.com>';

$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 to 配置详解】相关文章:

正确的PHP匹配UTF-8中文的正则表达式

留言板翻页的实现详解

php中file_exists函数使用详解

php4的session功能评述(三)

php-fpm 启动参数及重要配置详解

Windows下的PHP5.0安装配制详解

PHP Reflection API详解

php实现paypal 授权登录

php简单smarty入门程序实例

php遍历CSV类实例

精品推荐
分类导航