我想在使用 Courier 发送的电子邮件中添加 PDF。我已将我的账户设置为使用 Amazon SES 作为我的电子邮件提供商。我正在使用 Courier Node.js SDK 发送消息:
const courier = CourierClient();
const { messageId } = await courier.send({
eventId: "MONTHLY_BILLING",
recipientId: "81462728-70d2-4d71-ab44-9d627913f1dd",
data: {
"tennant_id": "W5793",
"tennant_name": "Oscorp, Inc.",
"billing_date": {
"month": "November",
"year": "2020"
},
"amount": 99.0
}
});
如何将发票也包含为 PDF?