2
I am trying to open my email client (for example Outlook) with the following:
<a href="mailto:[email protected]?subject=Assundo email&body=Corpo de email">
Send mail</a>
Now I’d like to send an attachment through mailto
. I’ve seen that it’s not possible with the function mailto
, but there is another way to open my email client with an attached file?
Yes, but the goal is the attachment to pass to the email client. Thank you
– pc_oc
That’s right @pc_oc, you asked another way and quoted in the answer. The way I know today would be you do it on the server side. Via Javascript there is no way to attach a direct file called the protocol "mailto".
– Carlos Andrade
See if this topic can help you: https://stackoverflow.com/questions/1195111/c-sharp-mailto-with-attachment
– Carlos Andrade