I have a mailto link like that <a href="mailto:a&b_admin@xyz.com" > it displays correctly on html but when we click on the link the outlook just shows a in the to address. Has anyone faced the same problem please suggest.
I have a mailto link like that <a href=mailto:a&b_admin@xyz.com > it displays correctly on
Share
Percent encoding the string is required for IE and I assume will work across browsers. From
this MSDN document:
So you need
As said, I expect a percent encoded address will work in all browsers, but I don’t know for sure. I can confirm it works with Chrome and Thunderbird.