Click to See Complete Forum and Search --> : email body auto returns??


sanjuT
03-23-2005, 09:49 AM
i use CDO for my e-mails.

for some reason, the body of the e-mail automatically returns each line if it reaches a certain point. for example, this link:

body = body & "https://abc/projects/Editproject.asp?project=" & projectid & "&Session=" & server.URLEncode(mysession) & "<br><br>"

appears like this in the e-mail:

https://abc/projects/Editproject.asp?project=189&Session=%7BA7C24261
%2DF83D%2D46A7%2D8EB6%2D89B667FAA845%7D

so the first line is underlined as a link, but because it goes across 2 lines, the 2nd line is not part of the link (even though it should be).

how can i override this auto return so that the link is all on one line?

thanks!

russell_g_1
03-24-2005, 11:06 AM
i've seen this before when i was using cdo at work. there's some kind of limit of about 70 odd characters somewhere in there. best way to avoid having problems is to just keep the urls short! :D

sanjuT
03-24-2005, 11:10 AM
so u never found a way around this 70 character limit?

russell_g_1
03-24-2005, 11:30 AM
no. not sure what the problem was (it was a while ago). ended up just making the links short enough to avoid it.