【发布时间】:2015-12-27 19:57:06
【问题描述】:
我必须在我的项目中使用邮件功能。当我在 hostgator 上托管我的项目时,它不起作用。但是当我在其他服务器上托管时,它工作正常。我无法理解问题。如果有人知道答案,请解释或建议我从一开始就可以理解的链接。谢谢。这是我的代码。
$to_address = "test@somedomain.com";
$subject = "This goes in the subject line of the email!";
$message = "This is the body of the email.\n\n";
$message .= "More body: probably a variable.\n";
$headers = "From: test@somedomain.com\r\n";
mail("$to_address", "$subject", "$message", "$headers");
【问题讨论】:
标签: php email server web-hosting host