#!/bin/sh
# sendmail command line optons:
# -i - do not treat lines starting with dot specially
# -t - read recipients lists from message headers: TO,CC,BCC
# -v - use verbose mode (describe what is happening)
#
# Empty lines separates mail headers from mail body
/usr/sbin/sendmail -i -t << MESSAGE_END
From: john.doe@examle.net
To: jane.doe@example.ccom
Hi, this is my message,
and I'm sending it to you!
MESSAGE_END
2条答案
按热度按时间ar7v8xwq1#
1.使用
sendmail
命令:已创建包含电子邮件内容的文件:
2.使用
mail
命令:-a
;对于mailutils,请使用-A
。**3.使用
mutt
命令:mtb9vblg2#
sendmail
需要“原始”格式的电子邮件。通常最好使用更高级别的命令,例如mail
。您可以尝试以下shell脚本