码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS如何用sendmail发送邮件

时间:2014-11-10 15:18:26      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:http   ar   os   使用   sp   strong   文件   div   on   

CentOS是一个非常不错的免费开源Linux系统,许多站点首选的平台。然而CentOS默认不能发送邮件,需要发送邮件的童鞋可以安装一个sendmail程序。

 

安装sendmail

执行:

1
[root@vps478753 ~]# yum -y install sendmail

程序会自动搜索出sendmail安装程序自动安装。

安装好sendmail以后执行以下命令启动sendmail

1
2
3
[root@vps478753 ~]# service sendmail start
Starting sendmail:                                         [  OK  ]
Starting sm-client:                                        [  OK  ]

 

启动以后我们可以执行mail命令测试一下是否能发送邮件

一、通过文件内容发送邮件

首先创建一个body.txt

1
[root@vps478753 ~]# touch body.txt

写入内容

1
[root@vps478753 ~]# echo ‘This is test mail‘>body.txt

发送邮件

1
[root@vps478753 ~]# mail -s ‘Test mail‘ mail@lizhong.me < body.txt

不一会就收到邮件了

bubuko.com,布布扣

点击打开,正文内容就是body.txt的内容

 

This is test mail

 

二、使用管道符直接发送邮件内容

如果不想通过文件发送邮件内容也可以这么发送

1
[root@vps478753 ~]# echo "This is test mail" | mail -s ‘Test mail‘ mail@lizhong.me

以上效果同文件发送邮件内容一样

 

如果提示mail: command not found

1
2
[root@vps478753 ~]# mail -s ‘Test mail‘ mail@lizhong.me < body.txt
-bash: mail: command not found

那么就是没有安装mail命令,此时需要安装mail命令

1
[root@vps478753 ~]# yum install mailx -y

然后再重新发送以下邮件就好了!

CentOS如何用sendmail发送邮件

标签:http   ar   os   使用   sp   strong   文件   div   on   

原文地址:http://www.cnblogs.com/ssc4469/p/4086978.html

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