在Linux上邮件的发送主要通过mail这个命令,一般发行版不会自带这个工具,我们需要自行安装。
安装包:mailx 或 mailutils
命令方式:
管道
echo "This is a test mail" | mail -s "test subject" xxxx.xxxx -- -F HOTROCK -f
文件重定向
mail -s "test subject" xxxx.xxxx -- -F HOTROCK -f
< mail_content.txt
阅读(956) | 评论(0) | 转发(0) |