使用linux系统给邮箱发邮件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用linux系统给邮箱发邮件相关的知识,希望对你有一定的参考价值。
配置文件如下:
[[email protected] ~]# vim /etc/mail.rc
set [email protected] smtp=smtp.163.com
set [email protected] smtp-auth-password=密码
set smtp-auth=login
在所用邮箱开启smtp协议
测试
[[email protected] ~]# echo "hello" | mail -s "hello test" [email protected]
邮箱收到邮件
PS:
read -p ‘Please input QQ‘ QQ
read -p ‘Please input the mail-number‘ n
for i in `seq $n ` ; do echo ‘hello $i ’ | mail -s "hello $i" [email protected] &> /dev/null ; done
本文出自 “zebra930” 博客,请务必保留此出处http://zebra930.blog.51cto.com/11736340/1869861
以上是关于使用linux系统给邮箱发邮件的主要内容,如果未能解决你的问题,请参考以下文章