Reputation: 15
I just wanted to link an email in html with an email address in which "&" is there.. can it be possible with mailto method..?
<a href="mailto:bread&[email protected]" style="color:#5a5a5a; text-decoration:none;">Bread&[email protected]</a>
Upvotes: 0
Views: 493
Reputation: 8068
Maybe something like this..
<a href="mailto:bread%[email protected]" style="color:#5a5a5a; text-decoration:none;">Bread&[email protected]</a>
Upvotes: 1