有关 MIME 电子邮件的标题

有关 MIME 电子邮件的标题

我想发送这样的 HTML 电子邮件:

MIME-Version: 1.0
Content-type: multipart/alternative; boundary=lazuardi
--lazuardi

那封电子邮件之后。我有 html 电子邮件。

Content-type: text/html; charset=UTF-8
<html>
<body>
......
This is HTML message
</body>
</html>
--lazuardi

然后我还包括纯文本

Content-type: text/plain
this is plain text message
--lazuardi--

我在 body.html 中包含 header 是错误的吗?我应该把标题放在哪里?我使用 Mutt 电子邮件客户端,每次发送电子邮件时,mutt 总是给我这样的消息:未找到边界参数! [报告此错误]...无法发送消息。

答案1

考虑看看RFC1521“MIME 第一部分”,附录 C“复杂的多部分示例”

看来你需要在标题后面添加一个空行。

相关内容