如何在 smtp 电子邮件中使用 IFS

如何在 smtp 电子邮件中使用 IFS

我有一个文本文件,其中包含

1
2
3
4
5

当我使用 SMTP 发送电子邮件时,格式显示

1 2 3 4 5

我希望它垂直显示。这是我所拥有的。

file=$(cat file1.txt)
echo -e "here are the numbers $file" | mail -S smtp=xxxxxxx.xxxx.xxxx -S from [email protected] -s "subject" [email protected]

我尝试过IFS=$'\t'以不同的方式申请,但没有成功。我对使用不感兴趣mailx

相关内容