Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以这是我要发送的整个文本:
这是我收到的电子邮件:
基本上我只是cat文件并回显,然后将其通过管道传输到 ssmtp,如下所示:
result=`cat file.out` echo "$result" | ssmtp $emailaddr
ssmtp 协议将格式something: something中的行定义为标题行,例如From: some@email.com定义电子邮件的来源。因此,如果您只想指定正文,请在邮件的标题和正文之间添加一个前导空行作为分隔符,并希望ssmtp可以将其选中。
something: something
From: some@email.com
ssmtp