从本地计算机使用PHP发送邮件

时间:2017-11-24 22:58:44

标签: php email

我已经让PHP在OS X上运行High Sierra。

我想用它来发送电子邮件。 (使用这个用于秘密圣诞老人程序。)邮件功能似乎实际上没有任何东西。

<?php
  $to      = 'exampleperson@gmail.com';
  $subject = 'the subject';
  $message = 'hello';
  $headers = 'From: secretsanta@exampledomain.com' . "\r\n" .
    'Reply-To: secretsanta@exampledomain.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();
  mail($to, $subject, $message, $headers);
?>

我错过了某处的配置吗?

0 个答案:

没有答案