I am sending emails to different users in my corporation. Some of our clients use Lotus Notes (8). These emails are generated by the server. Inside this email (HTML formatted), there is a link to a "mailto":
Please <a href="mailto:myaddress@mycorp.ca" >click here</a> to reply.
There is nothing else in the body of the email. Unfortunatly, when I click on this link (wich does appear as a link when reading the email from a Lotus Notes client), I get this error:
\\mailto:myaddress@mycorp.ca is not accessible. You might not have permission to use this
network ressource. Contact the administrator of this server to find out if you have access
permissions.
The parameter is incorrect.
On the other hand, if I create the email manually through the Notes client (using a "HotSpot"), the link works... Unfortunatly, generating the email with the Lotus Notes API is not a possibility because (a) we do not have a Domino server in our corporation, and (b) not all of our users use Lotus Notes...
Question: Is there a way to fix this problem without using the Lotus Notes API? I have tried this :
<div onclick="window.navigate('mailto:myaddress@mycorp.ca');" >Click Here</div>
but the javascript code is ignored... (probably a javascript security restriction in the client).
I have also considered not using HTML format in my emails; I could do most of my formatting using Rich Text Format, but I do not know what syntaxt would generate a Hotspot (or a functional mailto link) in the RTF content...