I have on button and On click of button I am opening outlook with subject and email. In email body how to open html content. I am able to open plain text but not html
My html deceleration :
var tab = <table><tr><td>test</td><td>test</td></tr></table>">test'/>
My on click event :
handler : function(){
window.location.href = "mailto:user@example.com?subject=Subject&body=+tab";
}
Calling tab in body part. Can any please suggest where I am going wrong. Thanks