Gmail Showing Plain Text Version
I was just tweaking some code that sends out email. I noticed in Gmail that the plain text version of the email was being shown even though it was a multipart message with both plain text and HTML alternatives provided. MailMessage msg = new MailMessage(); … System.Net.Mail.AlternateView htmlView; System.Net.Mail.AlternateView plainView; htmlView = AlternateView.CreateAlternateViewFromString( [...]
More »


