Hi friends, I want to send bulk emails for users with different reminders for each user... If i send them one by one it will take a lot of time ... so is there any concept in asp.net which use a queue to do this and send mails from there.....
+1
A:
If you are sending the same email to many users, send a single message with many addresses in the BCC field. The SMTP server will take care of breaking the message out for each destination. This way, your program only sends the message once, rather than sending the same message multiple times.
Ryan Michela
2009-09-19 04:21:58