Hi, I want to send email with attachment by using activex for IE.
I would like to add an element such as <img> or <canvas> which is on my page. How can I do that? here is some code.
Thanks for your helps..
I would like to add an element such as <img> or <canvas> which is on my page. How can I do that? here is some code.
Code:
var img = canvas.toDataURL("image/png"); var objO = new ActiveXObject('Outlook.Application'); mItm.Attachments.Add(); // should add img??
Comment