Linux下通过命令行mail发送e-mail

找到配置文件/etc/mail.rc添加如下行

# vi /etc/mail.rc
set from=@qq.com
set smtp=smtp.qq.com
set smtp-auth-user=
set smtp-auth-password=sbsbsbsb
set smtp-auth=login

通过以下命令发送邮件

echo  hello word | mail -s " title" @qq.com @qq.com

多个邮件地址使用空格分开

上一篇:iphone绘图的几个基本概念CGPoint、CGSize、CGRect、CGRectMake、window(窗口)、视图(view)


下一篇:js中exec、test、match、search、replace、split、indesOf()用法