码迷,mamicode.com
首页 > 系统相关 > 详细

linux中mail函数不能发送邮件怎么办

时间:2014-09-19 19:20:35      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:os   使用   ar   strong   art   sp   代码   on   c   

原因分析:

1.检查下本机25端口是否有开放
2.mail是利用linux自带的sendmail服务来发送邮件的,service sendmail status 查看下该服务的状态

 

发送命令:mail -s -v  "hell" aaaaaaa@163.com < test.txt

 

     没有安装或启动 sendmail 组件

  1.重新安装 sendmail 组件,我用的是 CentOS ,使用下面的命令安装

  yum install sendmail

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

  /etc/init.d/php-fpm restart

  3.检测sendmail是否运行正常

  /etc/init.d/sendmail status

  如果显示正在运行running 就可以。

  可能用到的命令

  /etc/init.d/sendmail start (启动sendmail)

  /etc/init.d/sendmail stop (关闭sendmail)

  /etc/init.d/sendmail restart (重启sendmail)

  4.配置php.ini,填写sendmail的绝对路径

  使用命令打开编辑php.ini

  vi /usr/local/php/etc/php.ini

  输入?sendmail_path 查找定位(或者手动跳转找到sendmail_path),你会发现默认是下面的代码

  ;sendmail_path =

  按 i 进入编辑,将这行修改为

  sendmail_path = /usr/sbin/sendmail -t -i

  按 Esc 键退出编辑,输入 :wq 保存退出

  5.重启php-fpm进程

  /etc/init.d/php-fpm restart

linux中mail函数不能发送邮件怎么办

标签:os   使用   ar   strong   art   sp   代码   on   c   

原文地址:http://www.cnblogs.com/Alight/p/3982070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!