Hello Everyone
How to send the body of an email in HTML format,
I am able to do it as a string but not as HTML
also how would one specify a reply to address so that when a user replies to the email , the recipients address is the email specified by us in the reply to email.
This is the piece of code i'm using as of now to send the email
mailMessage = new System.Net.Mail.MailMessage(mailFrom, mailTo);
mailMessage.set_Body(body);
Regards,
Hitesh