php - How can i attached multiple documents in javascript mailto? -


we need attached multiple document in mail in using javascript or j query.

we need attached document path must live uri like: http://www.axmag.com/download/pdfurl-guide.pdf

my code like: html:

<a onclick="sendmaildocument();">mail</a> 

javascript:

function sendmaildocument() {       document.location = "mailto:user@example.com?attach="+"http://www.axmag.com/download/pdfurl-guide.pdf"; }  

please me..!

no, can not add attachment message mailto: url scheme. mailto: supports header values or text/plain content. see rfc 2368 details.


Comments