узел-спаркпост, не включая вложение в электронном письме - PullRequest
0 голосов
/ 08 февраля 2019

Я пытаюсь отправить электронное письмо с вложением с node-sparkpost (в котором используется API для передачи под капотом).

Почему следующий код отправляет письмо,но без вложений?

"use strict";
let Sparkpost = require("sparkpost");
let apiKey = "xxx";
let fromAddress = "dan@example.com";
let toAddress = "dare@example.com";

let spClient = new Sparkpost(apiKey);

spClient.transmissions
  .send({
    options: {},
    content: {
      from: fromAddress,
      subject: "The subject",
      html: "See attached file.",
      text: "See attached file."
    },
    recipients: [{ address: toAddress }],
    attachments: [
      {
        name: "attachment.json",
        type: "application/json",
        data: Buffer.from("{}").toString("base64")
      }
    ]
  })
  .then(data => {
    console.log("email mail sent");
    console.log(data);
  })
  .catch(err => {
    console.log("email NOT sent");
    console.log(err);
  });

1 Ответ

0 голосов
/ 08 февраля 2019

Классический момент самоконтроля.

Свойство attachments ДОЛЖНО быть потомком content:

    content: {
      from: fromAddress,
      subject: "The subject",
      html: "See attached file.",
      text: "See attached file.",
      attachments: [
        {
          name: "attachment.json",
          type: "application/json",
          data: Buffer.from("{}").toString("base64")
        }
      ]
    },
...