I know how to write the basic c# code to send emails, but I'm wondering about any larger issues involved. Are there things I should avoid? Best practices? etc
Thanks!!
The BCC method The BCC (Blind Carbon Copy) method is the most common approach to send emails to multiple recipients at the same time. Emailing to multiple recipients using the BCC feature hides other recipients from the recipient, making it look like he is the sole recipient of the email.
You probably want to spawn this stuff out in batches, so everything is not being sent from one process in a continuous loop. You can do this much quicker if you group the batches by 25 e-mails and spawn say 50 threads to send those 25 queues. Given your 10,000 e-mails it would only take 8 loops to complete the whole batch of e-mails.
You can obviously change these numbers, but you will need to split this up in to multiple threads that send a group of e-mail. It will be up to you to find the optimal numbers of this process.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With