PHP 不发送电子邮件,日志中没有错误

发布于 2024-09-02 03:24:59 字数 146 浏览 5 评论 0原文

我已经使用 PHP 5.2、apache 和 sendmail 设置了 Ubuntu 服务器。我有一些 Drupal 网站应该发送电子邮件,但没有。我在 apache 日志中没有看到任何错误,并且 /var/log/mail.log 中似乎没有任何内容。我需要做什么来调试这个?

I've got an Ubuntu server set up with PHP 5.2, apache and sendmail. I've got some Drupal sites that should be sending emails but are not. I don't see any errors in the apache logs and there appears to be nothing in /var/log/mail.log. What do I need to do to debug this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玻璃人 2024-09-09 03:24:59

默认情况下,与 sendmail 相关的配置部分在 php.ini 文件中被注释掉。

查找:

; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = [email protected]

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path =

在您的 php.ini 文件中。请注意,可能有多个 php.ini 文件,例如用于 CLI php 的文件和一个用于 Apache 模块的文件。

By default the config section related to sendmail is commented out in the php.ini file.

Look for:

; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = [email protected]

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path =

In your php.ini file. Note that there could be more than one php.ini file, for example for the CLI php, and one for the Apache module.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文