Linux系统下通过shell命令发送电子邮件
时间:2010-03-30 来源:chinaltang
在Linux上邮件的发送主要通过mail这个命令,一般发行版不会自带这个工具,我们需要自行安装。
安装包:mailx 或 mailutils
命令方式:
管道
echo "This is a test mail" | mail -s "test subject" xxxx.xxxx@windriver.com -- -F HOTROCK -f [email protected]
文件重定向 mail -s "test subject" xxxx.xxxx@windriver.com -- -F HOTROCK -f [email protected] < mail_content.txt
文件重定向 mail -s "test subject" xxxx.xxxx@windriver.com -- -F HOTROCK -f [email protected] < mail_content.txt
相关阅读 更多 +