I am generating e-mails and in the e-mail body (html formatted) I need to include abcd.com but I need to escape it somehow to avoid gmail displaying it as a link (there's nothing at that address).

Any hints, please? Tried to google it but no luck.

link|improve this question
feedback

2 Answers

You are not going to be able to reliably obfuscate a URL so that all mail clients do not see it as such without obfuscating it so far that the user will not understand it either.

You could try spacing everything out like http :// www . example . com / dir / subdir / file ? qstring. The only other way I can think of is to include the URL as an image if you are sending rich-text mail. Both these techniques though will trip anti-spam measures as trying to disguise URLs is one of the most obvious signs of spammer activity.

link|improve this answer
1  
Also, embedding images is bad from accessibility point of view. Plain text can be viewed with big fonts, read aloud with voice synthesis etc. – Tadeusz A. KadÅ‚ubowski Sep 3 '09 at 9:57
thanks for your suggestion but that's not good enough (I guess there's no solution). I rather kept just abcd without .com. But thanks anyway. – Anonymous Sep 10 '09 at 16:04
feedback

include this text immediately after your link:

(Please DO NOT click. There is nothing on this address.)

Cheers

link|improve this answer
feedback

Your Answer

 
or
required, but never shown