我已经让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);
?>
我错过了某处的配置吗?