I need to show email on xPage. I use Icon with "mailto:" link to save space. It works well as clicked - opens new Notes email with clicked address. However when it is copied with "Copy email address" it has %40 instead of @ and users are complaining about that...
Here is the relevant code:
<xp:link escape="true" id="link2">
<xp:this.value>
<![CDATA[#{javascript:"mailTo:"+pData.getEmail();}]]>
</xp:this.value>
<xp:image id="image3" url="/mail.png" alt="e-mail..."></xp:image>
</xp:link>