I have a list field that contains hyperlinks and richtextformat. To send the emai I am using
Spweb web = spcontext.current.web;
StringDictionary headers = new StringDictionary();
headers.add("to","someone@email.com");
headers.add("from","me@rmail.com");
headers.add("subject","helloWorld");
headers.add("content-type","text/html"); //default
string body= (string) listitem["RichTextField"]
SPSecurity.RunWithElevatedPrivliges(delegate(){
SPUtility.SendEmail(web, headers, body);
});
It sends the hyperlinks fine but the rest is sent as plain text. Is this a result of Exhange or is RichText!=HTML ?