ashast1
ashast1

Reputation: 15

how to link email with "&" in the email address

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&amp;[email protected]" style="color:#5a5a5a; text-decoration:none;">Bread&amp;[email protected]</a>

Upvotes: 0

Views: 493

Answers (1)

intelis
intelis

Reputation: 8068

Maybe something like this..

<a href="mailto:bread%[email protected]" style="color:#5a5a5a; text-decoration:none;">Bread&amp;[email protected]</a>

Source

Upvotes: 1

Related Questions