I have javascript api to send email in which I can also use html, so I am creating table inside it but it is not working and tables does not show. Here is my code:
<script>
$(document).ready(function(){
$("#commandEmail1").click(function() {
presenter.command("emailSend",{
"toEmail": "[email protected]",
"toName": "Celeritas",
"subject": "email test",
"body": "Single Attachment",
"bodyHtml":"<table width="200" border="1"><tr><td> </td><td> </td> </tr><tr> <td> </td><td> </td> </tr></table>",
"attachments": [""]
});
return false;
});
})
</script>