Mailx 命令将电子邮件发送到 Gmail 帐户,内容类型为 Content-Type: text/html

Mailx 命令将电子邮件发送到 Gmail 帐户,内容类型为 Content-Type: text/html

我已经在 Red Hat Enterprise Linux Server 版本 7.2 上安装了 mailx ,我能够使用以下命令成功发送邮件。

echo -e“正文内容放在这里...”| mailx-v-r“[电子邮件受保护]" -s "主题内容放在这里" -S smtp=smtp://xxxx[电子邮件受保护]

上述命令发送正文中包含纯文本的邮件

我想要一个命令,其中我可以发送邮件正文中包含 html 类型内容的邮件。比如粗体字母、字体颜色……我该怎么办???任何帮助将不胜感激。

答案1

尝试:

echo -e "Body content goes here ..." | mailx -v \
-r "[email protected]" \
-s "subject content goes here" \
-S smtp=smtp://x.x.x.x [email protected] \
-S "Content-Type: text/html"

相关内容