-
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.
-
just a though...
did u try to URL encode it?
i am not sure how the smtp thingy works... its worth a try.
-
I'm not sure what you mean by URL encode it?
-
Code:
set result = Server.URLEncode("user name") & "@domain.com"
that would return like user%[email protected]
like i said, i've never touched this stuff.