有些时候Server中的一些信息需要通过邮件来发送,那么这时候Server中又没有搭建Mail 服务器,可以通过下面的方法来向外网用户发送邮件。
1、开启postfix邮件服务
service postfix start
2、设置/etc/mail.rc
set from=84631xxxx@qq.com #设置发件人
set smtp=smtp.qq.com #设置smtp服务器地址
set smtp-auth-user=84631xxxx #设置验证用户
set smtp-auth-password=xxxx #设置密码
set smtp-auth-login #验证登录
3、发送邮件
echo “hello” | mail -a /root/test.txt -s “test mail” hongxue@xxxx.com
4、验证
发现邮件已经成功收到
Ubuntu VPS使用heirloom-mail调用163邮箱SMTP服务器发送邮件:http://www.linuxdiyf.com/linux/16553.html
Linux下发送邮件的使用技巧:http://www.linuxdiyf.com/linux/15925.html
Linux sendmail发送邮件失败诊断案例:http://www.linuxdiyf.com/linux/13511.html
4个开源的命令行邮件客户端:http://www.linuxdiyf.com/linux/13910.html
在Linux中加密邮件:http://www.linuxdiyf.com/linux/10373.html