Hi there,
Right now i'm building a converter which converts an instance of System.Net.Mail.MailMessage to an instance of LimiLabs.Mail.IMail.
Things are going great so far, but now i'm stuck because i don't know how AlternateView works in LimiLabs Mail.dll
Here is what is have so far:
foreach (System.Net.Mail.AlternateView alternateView in m.AlternateViews)
{
MimeAlternative alternative = new MimeFactory().CreateMimeAlternative();
//TODO: IMPLEMENT
//builder is a LimiLabds MailBuilder instance
builder.AddAlternative(alternative);
}
I hope someone can help me out.
Kind regards,
Erik