我正在尝试发送带有附件的电子邮件,如下所述:https ://msdn.microsoft.com/office/office365/APi/mail-rest-operations#SendMessageOnTheFly
使用这个 JSON 正文,我收到了来自服务器的 202 响应,并成功收到了附有文件的电子邮件。
Post to https://outlook.office.com/api/v2.0/me/sendmail:
{
Message: {
Subject: "...",
Body: {
ContentType: "HTML",
Content: "..."
},
ToRecipients: [
{
EmailAddress: {
Address: "..."
}
}
],
Attachments: [
{
"@odata.type": "#Microsoft.OutlookServices.FileAttachment",
Name: "test.txt",
ContentBytes: "bWFjIGFuZCBjaGVlc2UgdG9kYXk="
}
]
},
SaveToSentItems: true
}
但是,如果我将名称更改为“test.msg”,我会收到 500 Internal Server Error 并带有以下响应:
{
"error": {
"code": "ErrorInternalServerError",
"message": "Object reference not set to an instance of an object."
}
}
并且使用“test.eml”,我还收到 500 内部服务器错误,但响应不同:
{
"error": {
"code": "ErrorInternalServerError",
"message": "Unable to cast object of type 'Microsoft.Exchange.Services.Core.Types.ItemAttachmentType' to type 'Microsoft.Exchange.Services.Core.Types.FileAttachmentType'."
}
}
奇怪的是,对于这两种情况,我仍然会收到电子邮件以及附件。这令人沮丧,因为目前我的应用程序告诉用户发送电子邮件时发生错误(基于不成功的状态代码),但电子邮件实际上已发送。
我意识到消息和事件还有另一种对象类型 (#Microsoft.OutlookServices.ItemAttachment),但我理解这意味着 Outlook 的服务器上已经存在并通过 ID 链接的项目(例如为一个事件附加会议邀请已经创建);另外,该类型没有 ContentBytes 作为我要填充的字段。对于即时发送,我认为任何二进制文件数据都将被视为相同(这些 .msg 和 .eml 文件是从用户的计算机上传的,不一定已经存在于 Outlook 中)。
知道这里发生了什么吗?
更新 我已经测试过创建草稿消息,并将附件添加到消息的单独帖子中,然后发送. 同样,同样的错误信息。创建和发送成功的状态码。如果扩展名是 .msg 或 .eml 类似,创建附件将导致 500 内部服务器错误。不过,实际发送的电子邮件将包含所有附件。