目前,我正在开发营销扩展。那样,我需要在用户写新邮件时附加图像。
为此,我正在按照以下步骤操作
您还可以在下面看到代码
var domndEditor = document.getElementById("content-frame");
var htmlEditor = domndEditor.getHTMLEditor(domndEditor.contentWindow);
var img = "<img moz-do-not-send='true' src='https://images.pexels.com/photos/414612/pexels-photo-414612.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500' alt='xcxc' shrinktofit='true' />";
htmlEditor.insertHTML(html);
如果电子邮件中包含大量内容,这是可行的。例如,在邮件正文中发送表格内容。但是当我发送一封线路邮件时。它不起作用
有人有解决办法吗?预先谢谢你:)