我需要通过 mail()
PHP 函数发送电子邮件。我在某处读到我必须更改 driver
参数 config/mail.php
到 sendmail
。
默认情况下,它看起来像这样:
'driver' => env('MAIL_DRIVER', 'smtp'),
现在,它看起来像这样:
'driver' => 'sendmail',
也试过这个:
'driver' => 'mail',
但是, mail()
函数仍然不起作用。我需要改变什么?
原文由 Oleg 发布,翻译遵循 CC BY-SA 4.0 许可协议
你可以设置你的邮件配置
.env
文件还可以在 config/mail.php 中设置配置,例如:
'from' => ['address' => 'youremail@gmail.com', 'name' => 'Test'],
然后你可以清除缓存: