0%

LNMP笔记:解决mail函数不能发送邮件

问题根源

没有安装或启动 sendmail 组件

解决办法

  1. 确认已经安装sendmail

    1
    yum install sendmail

    Redhat 与
    CentOS 用户可以使用 yum 进行安装;Ubuntu 与 Debian 用户可以使用 apt-get 进行
    安装。

  2. 使用下面的命令重启php-fpm进程

    1
    /etc/init.d/php-fpm restart
  3. 检测sendmail是否运行正常,确保

    1
    /etc/init.d/sendmail status
  4. 配置php.ini,填写sendmail的绝对路径

    1
    sendmail_path = /usr/sbin/sendmail -t -i
  5. 重启php-fpm进程

    1
    /etc/init.d/php-fpm restart