Jeffrey Stedfast
Jeffrey Stedfast
Can I plead with you guys to use MimeKit once again? :-) I've gotten MimeKit to be as fast as native C code. I've also added TNEF support and it...
your patch assumes all consumers of S22.Imap can only handle text parts as the message body, but that is not how MIME is meant to be interpreted. If that was...
It can have _any_ Content-Type that the sending client is able to render. That could be image/jpeg, application/pdf, application/postscript, etc. Apple Mail sending an application/pdf as Content-Disposition: inline is not...
The problem with using System.Net.Mail.MailMessage is that it was really only designed for the purpose of _sending_ mail and so therefore could make assumptions about the structure of the message...
Glad to help!
This is a fun problem to solve... you can see how I did it in my C library here: https://github.com/jstedfast/spruce/blob/master/spruce/providers/imap/spruce-imap-engine.c#L1368
I ported this sample app to Xamarin.Forms and Android looks the same as in MAUI (IOW the large png is displayed at full size even though the button is much...
Just tested the Xamarin.Forms port on iOS and what it shows is a scaled-down image in the button, but oddly no text?  instead. Unlike OpenPOP.NET, MailKit is still actively maintained. It's also more robust and more featureful. Note: MailKit is my own project, so I'm biased,...
BTW, don't forget to update code like `PDictionary.FromFile(path)` to do `PDictionary.FromFile(FileSystem.GetFilePath(path))` and `plist.Save(path)` to do `plist.Save(FileSystem.GetFilePath(path))`