如果我可以保证客户端机器使用Outlook并且浏览器是IE9 +,有没有办法构建mailto以便像调用Outlook这样的命令包含/ a所以它将使用mailto的附件参数?
所以说mailto看起来像
function emailFile() {
var contentArea = "This is the text";
var subject = "This is the subject";
var href = 'mailto:?subject=' + subject + '&body=' + contentArea + '&attachment="e:/large.jpg"' ;
location.href = href;
}
为什么不使用Outlook期望的/ a param从jQuery代码打开命令行outlook?关于网络上的mailto附件有很多问题,我知道必定存在问题,但Outlook命令行提供了一个开关,为什么在这种情况下不使用交换机呢?
或者如果它确实有效,那么先决条件和我做错了什么?