1) 使用 mail / mailx
man mail
-a的选项(-a 文件名,将文件作为附件添加到邮件)和-s选项(-s 主题,指定邮件的主题)
mail -s "Test Subject" user@example.com
从文件中读取邮件内容并发送
$ mail -s "message send from file" user@example.com < /path/to/file
从管道获取到的echo命令输出作为邮件内容发送
$ echo "This is message body" | mail -s "This is Subject" user@example.com
发送带附件的邮件
$ echo “Body with attachment "| mail -a foo.tar.gz -s "attached file" user@example.com
-a选项用于指定附件