我遇到了将Outlook和iOS邮件应用程序识别为日历事件而不是普通电子邮件的日历事件的问题。
我在node.js环境中使用JavaScript。要发送电子邮件,我正在使用mailgun和js库mailgun-js
。我正在创建ics文件并将其附加到电子邮件中。
const mailgun = require('mailgun-js')({apiKey: mailgunApiKey, domain: mailgunDomain})
const candidateEmailBody = {
from: `${companyName} <${EMAIL_FROM}>`,
to: email,
subject: companyName + ' - interview',
html: 'Html message',
attachment: [invite]
}
mailgun.messages().send(candidateEmailBody, function (error, body) {
if (error) {
console.log(error)
}
})
invite
对象由ics
lib创建,并通过以下函数包装在mailgun附件中:
const prepareIcsInvite = function (startDate, companyName, firstname, lastname, email, intFirstname, intLastname, intEmail) {
const st = new Date(startDate)
const meetingEvent = {
start: [st.getFullYear(), st.getMonth() + 1, st.getDate(), st.getHours(), st.getMinutes()],
end: [st.getFullYear(), st.getMonth() + 1, st.getDate(), st.getHours()+1, st.getMinutes()],
title: companyName + ' - Interview',
description: 'description',
location: 'location',
status: 'CONFIRMED',
productId: 'myproduct',
organizer: {name: 'Admin', email: 'admin@example.com'},
attendees: [
{name: firstname + ' ' + lastname, email: email},
{name: intFirstname + ' ' + intLastname, email: intEmail}
]
}
const icsFile = ics.createEvent(meetingEvent)
const fileData = new Buffer(icsFile.value)
const invite = new mailgun.Attachment(
{
data: fileData,
filename: 'Meeting Invite.ics',
contentType: 'text/calendar'
})
console.log('ICS meeting invite created')
return invite
}
通过mailgun API发送以这种方式准备的电子邮件,GMail正确地将其识别为会议邀请:
但是,其他电子邮件客户端(iOS,Outlook)无法识别这是日历活动邀请,只是将其显示为普通电子邮件,并附带文件附件。
如何使此邮件与Outlook和iOS兼容?
答案 0 :(得分:1)
Outlook(我也相信iOS)使用“替代品”来存储邀请。
此GitHub问题概述了如何使用MIME库构建事件消息:https://github.com/bojand/mailgun-js/issues/44。您应该能够使用问题中列出的相同代码流来构建消息。您需要使用ics.createEvent返回的字符串值进行“addAlternative”调用。
Mailcomposer是Mailgun文档(https://documentation.mailgun.com/en/latest/api-sending.html#examples)中引用的MIME库。