无法通过 mandrillapp 将文档附加到电子邮件 JSON api

Cannot attach a document to email via mandrillapp JSON api

我正在尝试通过 mandrillapp JSON api send-template 方法 javascript 发送带有附件的电子邮件,电子邮件已成功发送,甚至图像也可以附加到 images 数组,但在 attachements 数组中发送的包含 base64 内容的文档未交付。这是请求的示例

url: https://mandrillapp.com/api/1.0/messages/send-template.json

POST数据:

"key":"private key",
"message": {
  attachements: [
     {content: "dGVzdA0K", name: "test.txt", type: "text/plain"}
  ],
  images: [
     {content: "iVBORw0KGgoAAAAN...", name: "img.png", type: "image/png"}
  ],
  ...
}
...

收到有内容和图片的消息,但没有文本文档。我尝试发送失败。

此问题是由于负载中 "attachements" 一词的拼写错误造成的。应该是附件。

希望对您有所帮助,