PHP mail()在digitalocean ubuntu 18中不起作用

时间:2018-10-06 13:44:32

标签: php email digital-ocean ubuntu-18.04

我在这里尝试了本指南: https://www.digitalocean.com/community/questions/php-mail-function-enable

,但似乎没有任何效果。

邮件没有发送任何错误,并且邮件功能返回TRUE,但是,我没有收到任何用gmail发送的电子邮件。

$to      = 'myexampleemail@gmail.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
            'Reply-To: webmaster@example.com' . "\r\n" .
            'X-Mailer: PHP/' . phpversion();

if(!mail($to, $subject, $message, $headers))
   echo 'error';

其中myexampleemail@gmail.com当然是我的电子邮件。 不回显“错误”,这意味着成功了吗?

任何帮助将不胜感激。预先感谢。

0 个答案:

没有答案