本文共 978 字,大约阅读时间需要 3 分钟。
练习圣经的第四章,配置了一下,还是挺简单的,首先下载个sendmail(http://glob.com.au/sendmail/),很小,解压,配置sendmail.ini文件。
主要配置三个地方
smtp_server=smtp.163.com
; smtp port (normally 25)
smtp_port=25
; if your smtp server requires authentication, modify the following two lines
auth_username=****@163.com
auth_password=******
error_logfile=error.log
debug_logfile=debug.log设置server地址,如果不确定,可以google了一下你的邮箱的smtp服务就可以了。
smtp_port一般不需要动。
设置你的账户和密码。
日志文件开不开启随便,如果不那么确信一次成功的话还是开启,便于查看错误。
然后配置php.ini
smtp_port = 25
sendmail_path ="E:\PaperAndProgram_tian\MySoftware\sendmail\sendmail.exe -t"第一个端口号一般都是25.
第二个是sendmail.exe所在路径,据说不要太长,我也不太清楚。
测试的代码
$name = $_POST['name'];
$address = $_POST['address'];
$content = $_POST['content'];
$webServerMail = "*****@163.com";
$fromMail = "From: ******@163.com";
$subject = "feedBack from website";
$mailContent = "name: $name\r\n"."address: $address\r\n"."conternt: $content\r\n";
if(mail($webServerMail, $subject, $mailContent, $fromMail))
echo "SUCCESS";
?>友情提示: 把*****换成自己相应的邮箱。
转载地址:http://hxspa.baihongyu.com/