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…..
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.