|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#1 |
|
Member (10 bit)
|
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. |
|
|
|
|
|
#2 |
|
Member (10 bit)
|
I tried to add..
Code:
fl" & Chr(12) & "techsupport@..." |
|
|
|
|
|
#3 |
|
Member (9 bit)
Join Date: Dec 1999
Location: Midland, NC, USA
Posts: 292
|
Art,
I'm afraid your first post holds the answer (underlines), unless the names with spaces are aliases, in which case you'd need to send emails to the exact mailbox name (if it doesn't contain spaces, too). Take a look here: http://support.microsoft.com/support.../q173/4/70.asp |
|
|
|
|
|
#4 |
|
SQL nutcase
|
What happens if you replace the white space with "%20"
so "fl techsupport@" would become "fl%20techsupport@" don't know if it works, but it's worth trying. |
|
|
|
|
|
#5 |
|
Member (9 bit)
Join Date: Dec 1999
Location: Midland, NC, USA
Posts: 292
|
Hmm.... That might work since you're sending a delimited character string. And the embedded space is what causes the address to break.
Worth a try.... |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|