Ajax HTML editor Issue In Asp.Net
Hello.I am using Ajax html editor in my asp.net application.
I am creating HTML from C# and passing to editor control. Then in editor, there is button to send email.
On click, email with html editor content send to customer.
The problem is, email design is not same as html string created initially.
Ex. If I am passing string as, <div><p style='font-size: 14px;font-family: calibri;font-style: normal;color: #333333;'>Dear Team</p></div>
On email sending, the string return from html editor as,
Dear Team<br />
<br />
I want to send original string as it is in email.
How to achieve this. ?