You can display the view in a line and then send it as the body of your message using:
MailMessage message = new MailMessage (); AlternateView htmlView = AlternateView.CreateAlternateViewFromString (htmlMessage, "text/html") message.AlternateViews.Add (htmlView);
source share