Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Email messages missing attachments. #4

Closed
alexhiggins732 opened this issue Oct 28, 2020 · 3 comments
Closed

Email messages missing attachments. #4

alexhiggins732 opened this issue Oct 28, 2020 · 3 comments
Assignees
Labels
enhancement New feature or request

Comments

@alexhiggins732
Copy link

The IMessageTransaction interface and implementations do not implement an Attachment collection and the underlying server code does not parse the attachments of the email.

@ESEricWare
Copy link

I used MimeKit and this worked for me

var message = new MimeMessage();
byte[] byteArray = Encoding.ASCII.GetBytes("MailRawBody");
MemoryStream stream = new MemoryStream(byteArray);
message = MimeMessage.Load(stream);

in the resulting message all attachments are included

@zabszk
Copy link
Owner

zabszk commented Oct 12, 2023

Hi,

I have been testing MimeKit recently and it should work fine. In the future I plan to use it in this project.

@zabszk zabszk self-assigned this Oct 12, 2023
@zabszk zabszk added the enhancement New feature or request label Oct 12, 2023
@zabszk zabszk pinned this issue Oct 12, 2023
@zabszk
Copy link
Owner

zabszk commented Dec 23, 2023

Feature has been implemented in the version 1.1.6, which has just been released.

@zabszk zabszk closed this as completed Dec 23, 2023
@zabszk zabszk unpinned this issue Dec 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants