Skip to content Skip to sidebar Skip to footer

Using Mailto Link, Can I Send A Copy To The Sender?

We've developed a very simple form that once submitted populates an e-mail to send in support tickets. The e-mails currently send to our 'support staff' but it would be ideal if we

Solution 1:

It can't be done, at least not from the browser.

While it is possible to encode multiple To addresses (or a CC address) into a mailto: URL, you have to know the address you want to send it to in advance.

You could write code that watches your support mailbox and copies any incoming email back to the sender, but this would be a terrible idea (not least because it would provide a system for spammers to bounce their spam off your system and back at their targets by using a fake From address).

Almost every email client is configured to keep a copy of any sent email by default anyway. There shouldn't be any need to try to reproduce that feature.

Solution 2:

Just include an ask for the senders information in your form. Since you are using a mailto link there's no worry about spam because the sender is sending it using their own email client. Populate the mailto link with the sender's provided information as a bcc.

Check out http://mlto.tk

Post a Comment for "Using Mailto Link, Can I Send A Copy To The Sender?"