Possible Duplicate:
MailTo with HTML body
I want to send email from javascript. I found this post which helped me alot Sending emails with Javascript.
But I need to add image, bold text and color changes in email content.
Any help?
What i tried:
var content = "I want to send email from javascript. <span style='color:red'>I found this post which helped me alot</span><img src='logo.png'/> Sending emails with Javascript"
var link = "mailto:me@example.com"
+ "?cc=myCCaddress@example.com"
+ "&subject=" + escape("This is my subject")
+ "&body=" + escape(content);
window.location.href = link;