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

shell 发送邮件

时间:2014-10-14 15:09:48      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:使用   文件   sp   on   log   bs   服务器   as   安装   

bin/mail(bin/mailx)默认使用本地sendmail发送邮件,本地的机器必须安装并启动Sendmail服务,配置比较麻烦,不稳定。


下文通过修改配置文件可以使用外部SMTP服务器来发送邮件。

以网易邮箱为例。

1、vim  /etc/mail.rc #( /etc/nail.rc),追加如下文字

set from=from@163.com 

set smtp=smtp.163.com

set smtp-auth-user=from@163.com 

set smtp-auth-password=aaaa

set smtp-auth=login

说明:

from是发送的邮件地址

smtp是发生的外部smtp服务器的地址

smtp-auth-user是外部smtp服务器认证的用户名

smtp-auth-password是外部smtp服务器认证的用户密码

smtp-auth是邮件认证的方式


配置后执行如下命令:

cat context.txt| mail -s "tes the smtp mail" toooo@163.com

userfasdf@163com是收件人地址,content.txt里面是邮件正文.

shell 发送邮件

标签:使用   文件   sp   on   log   bs   服务器   as   安装   

原文地址:http://my.oschina.net/u/225373/blog/330406

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