I have a html form with upload option onclick of send button want to shoot mail automatically with attachment.i am able to pass subject and body but attachment is not attaching.please help me out thanks
var link = "mailto:personTO@example.com"+
"?cc=example@example.com"+
"&subject=" + escape("Information")+
"&body=" +body+
"&attachment="+attachpath;
window.location.href = link
with above code everything is append to outlook mail except attachment.