【发布时间】:2013-01-25 23:48:18
【问题描述】:
我在我的本地主机服务器上。我在下面使用此代码,但我从未收到过电子邮件。
<?php
$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
【问题讨论】:
-
您是否已将 SMTP 配置为通过 ISP 的邮件服务器发送电子邮件?
-
我正在使用 XAMMP,你是怎么做到的?
-
邮件功能在本地机器上不起作用