AegisImplicitMail.MimeMailMessage msg = new MimeMailMessage();
... msg.IsBodyHtml = true; msg.Body = "<html>" + "<body>" + "Hello world in HTML" + "</body>" + "</html>";
The recepient will receive a plain text message, containing the body text including the HTML tags.
What am I doing wrong?
You seem to have CSS turned off. Please don't fill out this field.
Anonymous
i got same issue
View and moderate all "Bug Report" comments posted by this user
Mark all as spam, and block user from posting to "Discussion"
...
msg.IsBodyHtml = true;
msg.Body = "<html>" +
"<body>" +
"Hello world in HTML" +
"</body>" +
"</html>";
The recepient will receive a plain text message, containing the body text including the HTML tags.
What am I doing wrong?
View and moderate all "Bug Report" comments posted by this user
Mark all as spam, and block user from posting to "Discussion"
i got same issue