我构建了一个需要发送电子邮件的 Intranet 应用程序(低音量)。我将无法使用我组织的 SMTP 服务器,因此我需要通过sendmail
或发送这些电子邮件mail
。
但是,当我将电子邮件配置为:
$config['protocol'] = 'sendmail';
我得到:
Exit status code: 127
Unable to open a socket to Sendmail. Please check settings.
Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.
当我使用时:
$config['protocol'] = 'mail';
我得到:
Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.
有什么我应该在 PHP 中设置或检查phpinfo()
以弄清楚如何让它工作的吗?