PDA

Click to See Complete Forum and Search --> : Please help...


artsapimp
Sep 26th, 2000, 12:58 PM
In my office we have internal e-mail addresses and some of them have spaces (fl techsupport@....). I am using CDONTS to send email to myself (firstname.lastname@....) and it works, as soon as I change it to one with a space it won't send. How can I fix this? Getting new email addresses with underscores would take too much time.

thanks for your help.

nzerod
Sep 26th, 2000, 01:29 PM
did u try to URL encode it?
i am not sure how the smtp thingy works... its worth a try.

artsapimp
Sep 26th, 2000, 01:46 PM
I'm not sure what you mean by URL encode it?

nzerod
Sep 27th, 2000, 01:33 AM
set result = Server.URLEncode("user name") & "@domain.com"


that would return like user%20name@domain.com
like i said, i've never touched this stuff.