T
trevisc
Good afternoon everyone.
I'm currently trying to build an automated invoice system that
collects dynamic data and automatically sends out invoices. In my
test database I have 23 companies that i'm trying to send out.
I am currently using Web.Mail.MailMessage with my cable internet SMTP
as the server to send out to. I've noticed that if I just run it
straight through it will time out (almost like the server detects it's
being over loaded) for about half of them.
I have a little bit of a work around where I use
System.Threading.Thread.Sleep(10000) and it pauses for about 10
seconds between send and it works but it of course takes almost 4
minutes to complete for just 23 emails.
My question is:
Is there a better,faster, easier way for me to send out these emails?
Idealy i'd like to not use my SMTP at all.
Thank you for the help!
trevis
I'm currently trying to build an automated invoice system that
collects dynamic data and automatically sends out invoices. In my
test database I have 23 companies that i'm trying to send out.
I am currently using Web.Mail.MailMessage with my cable internet SMTP
as the server to send out to. I've noticed that if I just run it
straight through it will time out (almost like the server detects it's
being over loaded) for about half of them.
I have a little bit of a work around where I use
System.Threading.Thread.Sleep(10000) and it pauses for about 10
seconds between send and it works but it of course takes almost 4
minutes to complete for just 23 emails.
My question is:
Is there a better,faster, easier way for me to send out these emails?
Idealy i'd like to not use my SMTP at all.
Thank you for the help!
trevis