我正在尝试使用Mutt发送带有附件的HTML电子邮件。但是我还必须将From标头设置为自定义电子邮件地址。那部分不起作用。
这是我要使用的命令:
echo $mail_body | mutt -e "set from=cloudops@noreply.company.com" -e "set content_type=text/html" -a "$ofile" -s "AWS Key Rotation Needed" -- $email_address
HTML格式和附件正常工作。如何正确设置标题中的自定义?
答案 0 :(得分:0)
我假设您要使用的自定义电子邮件地址是您在Mutt(account1)中配置的邮件帐户之一。只需加载相应的配置即可。
echo $mail_body | mutt -e "source ~/.mutt/accounts/account1" -e "set content_type=text/html" -a "$ofile" -s "AWS Key Rotation Needed" -- $email_address