gpt4 book ai didi

asp.net-mvc - 使用 Microsoft Graph 或 Outlook REST API 在电子邮件正文中呈现嵌入图像

转载 作者:行者123 更新时间:2023-12-03 21:23:21 25 4
gpt4 key购买 nike

当我们使用 Microsoft Graph/Outlook REST API 收到电子邮件时,它的正文包含对嵌入图像的引用,如下所示。

<img src="cid:image001.jpg@1D3E60C.5A00BC30">

我正在寻找一种方法,以便我可以正确显示嵌入的图像,因为上面的图像标签不显示任何图像。我做了一些搜索,但没有找到任何帮助。

以下是使用 Microsoft Graph API 通过 id 获取电子邮件的示例代码。
// Get the message.
Message message = await graphClient.Me.Messages[id].Request(requestOptions).WithUserAccount(ClaimsPrincipal.Current.ToGraphUserAccount()).GetAsync();

最佳答案

要使用 Microsoft Graph API 通过电子邮件获取附加资源,您需要收到如下电子邮件。

// Get the message with all attachments(Embedded or separately attached).
Message message = await graphClient.Me.Messages[id].Request(requestOptions).WithUserAccount(ClaimsPrincipal.Current.ToGraphUserAccount()).Expand("attachments").GetAsync();

一旦您拥有带有电子邮件详细信息的所有附件,您需要遍历附件列表并检查附件 IsInline 属性是否设置为 true,然后只需替换

cid:image001.jpg@1D3E60C.5A00BC30



使用从附件的字节数组创建的 Base64String。
string emailBody = message.Body.Content;
foreach (var attachment in message.Attachments)
{
if (attachment.IsInline.HasValue && attachment.IsInline.Value)
{
if ((attachment is FileAttachment) &&(attachment.ContentType.Contains("image")))
{
FileAttachment fileAttachment = attachment as FileAttachment;
byte[] contentBytes = fileAttachment.ContentBytes;
string imageContentIDToReplace = "cid:" + fileAttachment.ContentId;
emailBody = emailBody.Replace(imageContentIDToReplace,
String.Format("data:image;base64,{0}", Convert.ToBase64String(contentBytes as
byte[])));
}

}
}

现在使用 emailBody 变量渲染电子邮件正文,它将显示所有嵌入的图像。

关于asp.net-mvc - 使用 Microsoft Graph 或 Outlook REST API 在电子邮件正文中呈现嵌入图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50879626/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com