我正在尝试使用smarthost使用以下命令发送html邮件:
mail -a "Content-type: text/html;" -s 'title' example@mail.com < test_mail.txt
我也尝试过使用它:
MIME-Version: 1.0: No such file or directory
但这是不可能的,因为我收到了这个错误:
dpkg -S `which sendmail`
exim4-daemon-light: /usr/sbin/sendmail
我正在使用exim:
xmlns
我的系统是Ubuntu 14.04.2 LTS。
答案 0 :(得分:0)
我找到了解决方法。我安装了postfix,所以邮件配置是这样的:
dpkg -S `which sendmail`
postfix: /usr/sbin/sendmail
然后您可以使用以下命令发送电子邮件:
cat mailheader mailbody | sendmail -t
其中mailheader是包含以下内容的文件:
To: mail@example.com
Subject: Example Subject
Content-Type: text/html; charset=UTF-8
和邮件正文一起包含您的邮件。