Search code examples
javascriptemailattachmentmailto

Attach File Through mailto URI


Is it possible to attach a file using "mailto:" redirect in javascript?

Something like this:

document.location = "mailto:"+recipient+"?subject="+subject+"&body="+msg+"?attach="+"file1.zip";

Solution

  • 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.