ubuntu 16.04.1 实现shell发送邮件

时间:2024-04-05 08:32:12

第一步、Ubuntu安装发送邮件程序

sudo apt-get install heirloom-mailx
vi /etc/s-nail.rc

 

 

在最后加入:

set [email protected]

set smtp=smtps://smtp.qq.com:465

set [email protected]

set smtp-auth-password=asdasdsadad

set smtp-auth=login

 

说明:此处以qq邮箱为例,smtp为邮箱服务器,password是邮箱smtp密码,并非qq密码,获取方式如下:


ubuntu 16.04.1 实现shell发送邮件
 

 

 

第二步、发送邮件:

mail -s "邮件标题" "[email protected]" < content.txt

 说明:[email protected]为收件人邮箱,content.txt为邮件内容