如何在javascript mailto中附加多个文档?

We need to attached multiple document in mail to in by using JavaScript or j query.

We need to attached my document path must be live URI Like: http://www.axmag.com/download/pdfurl-guide.pdf

My Code is 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 help me..!

No, you can not add an attachment to a message with the mailto: URL scheme. mailto: only supports header values or text/plain content. See RFC 2368 for details.