| Author |
Topic Search Topic Options
|
moti
Groupie
Joined: 07 September 2004
Status: Offline
Points: 73
|
Post Options
Thanks(0)
Quote Reply
Topic: bug : sending only 444 emails of 900 Posted: 14 April 2005 at 6:25pm |
I have ver 7.9
I am using CDOSYS I have about 900 users with 900 valid emails address
but when I use mass emailer it only send 444 emails and after it I get an unknown error
in this line
If NOT strOutgoingMailServer = "" Then .Send
every thing is OK server script timeout is about 10000
whats the problem
?
Thanks
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 15 April 2005 at 4:33am |
|
This could be coursed by one of your members having a malformed email
address, or your web host may have a limit on the number of emails you
can send.
|
|
|
 |
moti
Groupie
Joined: 07 September 2004
Status: Offline
Points: 73
|
Post Options
Thanks(0)
Quote Reply
Posted: 15 April 2005 at 5:36am |
about that member what we can do?
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 15 April 2005 at 8:22am |
|
Very little, the mass email tool is only very simple. If you want to
use mass email then I would recommend using a dedicated mailing list
application like Web Wiz Mailing List available from the ASP section of
this site.
|
|
|
 |
moti
Groupie
Joined: 07 September 2004
Status: Offline
Points: 73
|
Post Options
Thanks(0)
Quote Reply
Posted: 15 April 2005 at 7:14pm |
I found that,
There is a few members that registered with malformed email addresses for example first one is like this www.name@yahoo.com
and second type is like this
www.name@.yahoo.com or this name@.yahoo.comthis is the problem to preventing sending email to all OK now how can I prevent users to don't register with above email formats? Or how can I make a function to to prevent mass mailer to send email to this emails? Thanks borg Plz help me
|
 |
moti
Groupie
Joined: 07 September 2004
Status: Offline
Points: 73
|
Post Options
Thanks(0)
Quote Reply
Posted: 16 April 2005 at 9:22pm |
OK
I figured out the problem with this replacements strEmail = Replace(strEmail, "@.", "@", 1, -1, 1) strEmail = Replace(strEmail, "www.", "", 1, -1, 1) But how can I tell it to just check for "www." before "@" ? 
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 17 April 2005 at 5:25am |
|
The system already has a check in place for malformed email addresses,
but as people will enter all sorts of things you can never be 100% sure
that the email address is correct.
|
|
|
 |
moti
Groupie
Joined: 07 September 2004
Status: Offline
Points: 73
|
Post Options
Thanks(0)
Quote Reply
Posted: 17 April 2005 at 5:50am |
for exapmle entering " / " in email address can damage all mass mailer system so its better to make a filter for it to prevent entering this type of emails in database
|
 |