When I get a confirmation email sent via my rails app, I use this code
<a href='mailto:John%20Doe<[email protected]>?subject=Billing%20Submission'>LINK</a>
The email that shows up in all different emails is good except for aol.
In aol, it shows up as: ?subject=Billing%20Submission'>LINK
Is there any way around this without compromising the name being added?
Replace
With
>
after[email protected]
was actually ending the starting tag ofa
(anchor).Use URL encoding equivalent for
< (%3C)
and> (%3E)
sign.