[quoted text, click to view] SK wrote:
> Hi,
>
> Is there a logic in .net to send 1000 emails per second or more ..? And
> Can I use multiple servers to send mass emails at the same time using
> one database. I know one server won't handle it :o(
>
> Any help would be appreciated.
>
> Thanks,
> Sonu
The built in email support isn't going to handle this type of volume.
You can create the email text files from your application, save locally,
and then move to network shares that are email pickup folders for IIS or
other mail server. Moving is quicker than saving to a network share.
You will probably want multiple machines creating the emails as well.
There are several other things that you will need to worry about like
bounce handling, opt out handling, and how the major isp's handle your
email traffic (white-listing, black-listing, etc).