安装命令
ubuntu 14,16
apt-get install heirloom-mailx
ubuntu 18.04
在ubuntu18下面,这个命令所在的包变了,但是配置文件是类似的,改成了 s-nail.rc,内容是一模一样的。
apt install s-nail
编辑 /etc/nail.rc,ubuntu 18.04 是 s-nail.rc
set from=info@youdomain.cn
set smtp=smtps://smtp.exmail.qq.com:465
set smtp-auth-user=info@youdomain.cn
set smtp-auth-password=youpassword
set smtp-auth=login
发送邮件
通过管道发送
echo 邮件正文 | heirloom-mailx -s "主题" -a /data/ccc.txt target@domain.cn
通过转向发送长正文
heirloom-mailx -s "主题" -a /data/ccc.txt target@domain.cn < myletter.txt