ECS Linux系统安装sendmail服务发送邮件的具体操作
发布日期:2015-12-23 15:12:14
一、安装sendmail: yum -y install sendmail //安装sendmail因mail命令会调用sendmail发送邮件 安装完成后的提示: Installed: sendmail.x86_64 0:8.14.4-9.el6 Dependency Installed: hesiod.x86_64 0:3.1.0-19.el6 procmail.x86_64 0:3.22-25.1.el6_5.1 Complete! [root@iZ23ab89s2iZ ~]# service sendmail start Starting sendmail: [ OK ] Starting sm-client: [ OK ] 二、修改主机名: [root@iZ237q648wfZ ~]# hostname example.com //example.com表示修改的主机名,默认发送邮件域显示为主机名 三、测试发送邮件: echo "testmail" | mail -s test example@163.com //example@163.com是需要使用实际的邮箱地址替换 [root@iZ23ab89s2iZ ~]# echo $? 0 可看到命令成功执行,再检查邮件是否收到: 可看到已收到邮件。
|