Hi, i have a problem and i don't know how can i solve it.
I have an MailMessage object. It has subject like "notificación".Then i save it to MemoryStream in MSG format:
MemoryStream ms = new MemoryStream();
email.Save(ms, MessageFormat.Msg);
After this i retrieve it (in another class throuhg a MemoryStream parameter)
MailMessage mm = MailMessage.Load(ms, MessageFormat.Msg);
MessageBox.Show(mm.Subject);
And subject is "notificaci?n". Why? How can i retrieve the right subject?