I want to send email that has html tags as text
This is what I send
string sctipt = "<script src = http://whatever.com type = text/javascript></script>";
message.Body = string.Format("script:{0}", script);
the mail is send but without the string "<script src = http://whatever.com type = text/javascript></script>" because its coming as html tag and I need it to be send as text.
Any idae anyone?
Thanks in advance