Hello, I’ve been tasked with consuming millions of EML files into MS Exchange Server mailboxes. This has been going smoothly for the most part, but there is a small percentage of the email messages that throw errors. I can call this to load the file into an object without error:
spose.Email.MailMessage asposeMsg = Aspose.Email.MailMessage.Load(inputFile.FullName, new EmlLoadOptions() { PreserveEmbeddedMessageFormat = true });
But this line throws an exception when the message is trying to be uploaded to the mailbox:
var uploadedMessage = _ExchangeClient.AppendMessage(destinationMailbox.MailboxUris.InboxUri, asposeMsg);
While there seems to be a handful of different “types” of messages that generate this error:
Operation failed. Response code: ErrorMimeContentInvalid, Message text: Invalid MIME content.
I’d like to address the first such cause, which seems to be multi-part email messages in hopes that it sheds light on the other problem cases.
looking at one of the messages in a text editor, I see this:
From: PMDF Internet Messaging <xxxxx_redacted_xxxxxx>
Subject: Dxxxxx_redacted_xxxxxx
To: xxxxx_redacted_xxxxxx
Message-id: <01NX0AOJFEM200IZMBxxxxx_redacted_xxxxxx>
MIME-version: 1.0
Content-type: multipart/report;
boundary="Boundary_(ID_CpVCMODxYJDgo1zXfr3LXA)"; report-type=delivery-status
--Boundary_(ID_CpVCMODxYJDgo1zXfr3LXA)
Content-type: text/plain; charset=us-ascii
Content-language: EN-US
This report relates to a message you sent with the following header fields:
Message-id: <973CDF631FDA4360AE18EE825C20B26E@xxxxx_redacted_xxxxxx>
Date: Mon, 24 Jan 2011 15:34:40 -0600
From: xxxxx_redacted_xxxxxx
To: xxxxx_redacted_xxxxxx
Subject: xxxxx_redacted_xxxxxx[17/54]
Your message cannot be delivered to the following recipients:
Recipient address: xxxxx_redacted_xxxxxx
Reason: SMTP transmission failure has occurred
Diagnostic code: smtp;554 5.6.1 Messages of type message/partial are not supported
Remote system: dns;xxxxx_redacted_xxxxxx Microsoft ESMTP MAIL Service ready at Mon, 24 Jan 2011 16:16:25 -0600)
I recognize that this is an old email that I’m importing, and specifically for a non-deliverable message, but there are statutes that require that we keep a record of this attempted send of the original multi-part email in addition to the failure responses related to it.
I suspect that I need to somehow re-construct the multiple pieces of this email into a single message, and then try to upload it to the mailbox, but I can’t find any documentation nor avenues within the toolkit that help me accomplish this.
Does anyone have any experience using Aspose-email to re-assemble multi-part messages such that they can be imported into a modern mailbox?
Thanks in advance.