Which property is used in the email to send the content as HTML
Answer Posted / sudha
MailMessage mail = new MailMessage();
mail.To = <address>
mail.From = <address>
mail.Subject = emailSubject;
mail.BodyFormat = System.Web.Mail.MailFormat.Html;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is the difference between a namespace and assembly name in .net?
Explain about .Net products?
Explain .NET architecture?
Explain me what is a design pattern and what is it for?
What is dot net architecture?
Explain re-clarification of object based in .net?
Explain the main components in .net?
How will you load an assembly which is not referenced by current assembly?
How many types of generations are there in a garbage collector?
Explain the different types of proxy patterns?
What is the difference between server.transfer and response.redirect? Why?
What are the deferred execution and the immediate execution in linq?
What is the root class in .net?
What is boxing and un-boxing in .net?
Can I write my own .net host?