【发布时间】:2010-11-09 14:43:51
【问题描述】:
我的域上有一个简单的 php 脚本,可以向我发送电子邮件:
...
$toMail = "me@gmail.com"; //this works - I get the email at my gmail
$toMail = "me@mydomain.com"; //this doesn't - I get nothing
mail($toMail, $subject, $message, $header);
我要更改什么设置来解决这个问题?
【问题讨论】: