I am creating an internal mail system in my e-Commerce site.
In my database I have a table called
messages(id, senderid, receiverid, date, subject, content)
The sender should be able to send internal messages with formatting(colour, font, links to other sites etc.)
I am able to send and display messages without any formatting. But, I don't know
how to send a messages from ASP.NET page with formatting and display it in the same format.
Can anyone help me, please?
Loading
Nipun TomarPosted May 12, 2009, 3:23 AM
MailMessage mailMessage = new MailMessage();
.
.
mailMessage.IsBodyHtml = true;