【问题标题】:Issue with Gmail - Embedded images using MailKitGmail 问题 - 使用 MailKit 嵌入图像
【发布时间】:2020-03-02 03:57:24
【问题描述】:

我正在尝试使用 MailKit 发送带有嵌入图像的电子邮件。它在 MS Outlook 上运行良好。但是,图像不会在 Gmail 中显示为嵌入图像。我尝试使用“data:image/png;base64”格式附加到它,它也适用于 Outlook,但不适用于 Gmail。

任何帮助将不胜感激!

public string SendEmail (MyModel myModel)
{
    var message = new MimeMessage();
    var bodyBuilder = new BodyBuilder
    {
        HtmlBody = myModel.Body
    };
    GetAllImgTags(bodyBuilder);
    message.Body = bodyBuilder.ToMessageBody();
    // Send Email Here...
    return "OK"
}

    public string GetAllImgTags(BodyBuilder bodyBuilder)
    {
        HtmlDocument document = new HtmlDocument();

        document.LoadHtml(bodyBuilder.HtmlBody);

        var imgList = document.DocumentNode.Descendants("img").Where(x =>
        {
            string src = x.GetAttributeValue("src", null) ?? "";
            return !string.IsNullOrEmpty(src);
        }).ToList();

        foreach(var item in imgList)
        {
            string currentSrcValue = item.GetAttributeValue("src", null);
            var file = Path.Combine(_env.WebRootPath,"images", currentSrcValue);
            if (File.Exists(file))
            {                    
                byte[] imageData = System.IO.File.ReadAllBytes(file);
                string contentId = string.Format("{0}@{1}", Path.GetFileName(file), Guid.NewGuid().ToString());
                LinkedResource inline = new LinkedResource(new MemoryStream(imageData), Image.Jpeg)
                {
                    ContentId = contentId,
                    TransferEncoding = TransferEncoding.Base64,
                    ContentLink = new Uri("cid:" + contentId),

                };
                inline.ContentType.Name = contentId;
                inline.ContentType.MediaType = Image.Jpeg;
                bodyBuilder.LinkedResources.Add(contentId, new MemoryStream(imageData));

                item.SetAttributeValue("src", "cid:" + contentId);
                inline.Dispose();
            }
        }

        bodyBuilder.HtmlBody = document.DocumentNode.OuterHtml;
        string result = document.DocumentNode.OuterHtml;
        return result;
    }

【问题讨论】:

    标签: c# asp.net-core gmail mailkit


    【解决方案1】:

    嗯,首先,你为什么要创建 System.Net.Mail 对象,然后简单地处理它们而不以任何方式使用它们?

    请参阅此代码以了解我的意思:

    LinkedResource inline = new LinkedResource(new MemoryStream(imageData), Image.Jpeg)
    {
        ContentId = contentId,
        TransferEncoding = TransferEncoding.Base64,
        ContentLink = new Uri("cid:" + contentId),
    };
    inline.ContentType.Name = contentId;
    inline.ContentType.MediaType = Image.Jpeg;
    

    让我们试试这个:

    var contentType = new ContentType ("image", "jpeg");
    var contentId = MimeKit.Utils.MimeUtils.GenerateMessageId ();
    var image = (MimePart) bodyBuilder.LinkedResources.Add (file, contentType);
    image.ContentTransferEncoding = ContentEncoding.Base64;
    image.ContentId = contentId;
    
    item.SetAttributeValue ("src", "cid:" + contentId);
    

    【讨论】:

    • 成功了,非常感谢。我花了两天时间寻找解决方案,但徒劳地尝试了许多不同的事情。对了,图片obj有什么用?
    猜你喜欢
    • 2021-10-22
    • 2016-10-29
    • 1970-01-01
    • 2020-09-21
    • 1970-01-01
    • 1970-01-01
    • 2019-12-12
    • 1970-01-01
    • 2023-03-08
    相关资源
    最近更新 更多