如果没有正文文件的话,就用echo直接把正文打出来就行了,如:
echo "this is content" | mutt -s "this is subject" -a /path/yourfile -c
如果有正文文件的话就用
cat /path/contentfile | mutt -s "this is subject" -a /path/yourfile -c
mutt是linux下一个强大的邮件客户端软件.
-s是主题
-a是附件
-c是抄送,多个抄送就是多个-c,如
cat /path/contentfile | mutt -s "this is subject" -a /path/yourfile -c -c -c
如果发送多个email,就直接列出来就行了,如
cat /path/contentfile | mutt -s "this is subject" -a /path/yourfile