Hello friends,
I send one html mail from asp.net code.I set IsHtmlbody=true
When I use outlook and chek mail then it shows correct html mail but when I reply to this mail then in my original mail message html formatting is vanished.
In html code I try to send two Textboxes in mail.
for that i write code as
msgBodyhtml += "<table border='1' cellspacing='0' cellpadding='0'>";
DateTime dt = DateTime.Now
msgBodyhtml += "<tr><td> " + "<b>
[email protected]</b>" + "</td>";
msgBodyhtml += "<td><input type='text' value='ss' /><input type='text' value='ss' /></td>";
msgBodyhtml += "</tr>";
msgBodyhtml += "</table>";
Using this I see text boxes in my mail but when I reply to this mail then in below original mail message these text boxes are not seen.
Please help me
Thanks in advance