shell下使用mailx发送邮件


如果不能直接使用mailx,需要先下载安装mailx;
wget http://ftp.debian.org/debian/pool/main/h/heirloom-mailx/heirloom-mailx_12.5.orig.tar.gz
tar zxvf heirloom-mailx_12.5.orig.tar.gz    //解压
cd heirloom-mailx-12.5/
make && make install UCBINSTALL=/usr/bin/install     //安装
vi /etc/nail.rc(在配置文件最后添加)

set [email protected]                    (需修改)收件人显示的发件人名称,可填写你的名字等
set smtp=smtp.163.com                             (需修改)你所使用的外部邮箱的smtp服务器地址
set [email protected]   (需修改)你所使用的外部邮箱的用户名
set smtp-auth-password=*******               (需修改)你所使用的外部邮箱密码
set smtp-auth=login

测试
echo 123 | mailx -v -s "test" **********@qq.com
或者
mailx -v -s "test" **********@qq.com

你可能感兴趣的:(Shell)