with ActiveX I can create an Outlook instance and start a new HTML e-Mail.
Here is the sample code:
var outlookApp = new ActiveXObject("Outlook.Application");
var nameSpace = outlookApp.getNameSpace("MAPI");
mailFolder = nameSpace.getDefaultFolder(6);
mailItem = mailFolder.Items.add(‘IPM.Note.FormA’);
mailItem.Subject="a subject test";
mailItem.To = "an@email.here";
mailItem.HTMLBody = "<b>bold</b>";
mailItem.display (0);
Is there an equivalent for Firefox. For example with XPCom? Has anyone a sample please?
Thank you!
What is being done here is using
<a>‘smailto:similar approach: