在Linux系统可通过命令行自由发送邮件,使用sendmail函数、php mail函数就能实现,如果你没有sendmail函数则需要在Linux系统安装sendmail,下面小编就给大家介绍下Linux如何通过命令行发邮件 。
1. 安装 sendmail-cf 软件包
2. 修改 /etc/mail/submit.mc
1 FEATURE(`msp‘’,`[127.0.0.1]‘’)dnl
2 修改为
3 FEATURE(`msp‘’,`[Your mail server ip]‘’)dnl
3. 在 /etc/mail/ 目录下执行 make
测试
代码如下
mail -s ‘’hello www.xitongzhijia.net world!‘’ user1@chxbd.com
bin/mail会默认使用本地sendmail发送邮件,这样要求本地的机器必须安装和启动Sendmail服务,配置非常麻烦,而且会带来不必要的资源占用 。
如果你不用了我们可以关闭sendmail
关闭sendmail服务
代码如下
a.[root@sample ~]# /etc/rc.d/init.d/sendmail stop ← 关闭sendmail服务
或者[root@sample ~]# service sendmail stop ← 关闭sendmail服务
Shutting down sendmail: [ OK ]
Shutting down sm-client: [ OK ]
b.[root@sample ~]# chkconfig sendmail off ← 关闭sendmail自启动
c.[root@sample ~]# chkconfig --list sendmail ← 确认sendmail自启动已被关闭(都为off就OK)
sendmail 0:off 1:off 2:off 3:off 4:off 5:off 6:off
【Linux通过命令行发邮件的步骤】 上面就是Linux使用命令行发邮件的方法介绍了,安装完sendmail后,需要对目录下的文件进行修改,并对sendmail进行简单的测试 。
推荐阅读
- Linux执行定时任务时报错-bash:crontab:command怎么办?
- Linux如何使用命令释放内存
- Linux重启oracle数据库的三大技巧
- Linux如何修改TCP端口范围
- Linux使用scp命令远程传输文件的方法
- Linux虚拟机挂载硬盘时提示you must specify如何解决?
- Linux安装GBK/GB2312程序显示乱码怎么办?
- Linux如何使用shell命令检测PHP木马
- 在Linux上优化Mysql运行环境的技巧
- Linux如何利用ssh传送文件至FTP空间