How to send hyperlinks in email

starwarsdad

Golden Member
May 19, 2001
1,433
0
0
I am developing a web-based application using ColdFusion. I need to send email to users from the site. I am doind this with a CFMAIL tag with no problems, except....

My links are generally in the neighborhood of 80+ characters long. Most email clients break links somewhere around 75 characters and wrap the "left-overs" to the next line. What can I do to get the links to stay "whole" even if part of the link wraps to another line?

The emails I am sending out are in Plain Text, BTW.

Many Thanks and Happy Memorial Day!
 

n0cmonkey

Elite Member
Jun 10, 2001
42,936
1
0
If the clients wrap at 72 characters (which I believe is proper netiquette ;)), and you won't move to HTML emails (THANK YOU!), not sure there is much you can do about it.

Unless you work with something like: http://tinyurl.com/
 

AFB

Lifer
Jan 10, 2004
10,718
3
0
Originally posted by: starwarsdad
nope. I am sending the messages in plain text. No HREF tags at all. Just a link:

http://www.domain.com/directory/subdirectory/getfile.cfm?type=xxx&subtype=yyy&filename=name.extension

That's it. No HTML code.

Would it be possible to have another script to interpret a smaller link and redirect you ?


Like :

http://www.domain.com/mail.cfm?t=xxx&s=yyy&f=name.extension

Gets translated to this by the second script :

http://www.domain.com/directory/subdirectory/getfile.cfm?type=xxx&subtype=yyy&filename=name.extension
 

starwarsdad

Golden Member
May 19, 2001
1,433
0
0
TinyURL looks cool, but I cannot use it. The emails must show up as coming from my domain.

I will have to look into the idea of a translation script.

Oh and BTW NOCmonkey, I hate HTML email! It would not hurt my feelings to see it go away completely.

Thanks for the help gentlemen.