centos上:
第一步:在qq邮箱设置-->账户中开启pop3/smtp服务,并设置独立密码
第二步:yum install -y mailx
第三步:vim /etc/mail.rc 在文件最后添加你的邮箱信息:
set [email protected]
set smtp=smtp.qq.com
set smtp-auth-user=82312924
set smtp-auth-password=Your password
set smtp-auth-login
第四步:就能直接使用echo "正文" |mail -s "主题" [email protected]
ubuntu上:
ubunut上mailx这个命令对应的deb包有bsd-mailx和heirloom-mailx
bsd-mailx对应的配置文件是/etc/mail.rc跟centos一样,but配置了认证信息之后还是不能发邮件,具体原因我也没找到。。。
heirloom-mailx对应的配置文件是/etc/nail.rc。
配置过程如下:
第一步:在qq邮箱设置-->账户中开启pop3/smtp服务,并设置独立密码
第二步:apt-get install heirloom-mailx
第三步:vim /etc/nail.rc 在文件最后添加你的邮箱信息:
set [email protected]
set smtp=smtp.qq.com
set smtp-auth-user=82312924
set smtp-auth-password=Your password
set smtp-auth-login
第四步:就能直接使用echo "正文" |mail -s "主题" [email protected]
时间: 2024-12-16 08:29:53