i need create an email list sending to many emails. what is best solution in mvc to call long time operation? better with example
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.
I would suggest that you save the messages you want to send in a DB for example, along with the recipients. Then, you can use a scheduler (like Quartz.NEt) that checks every one minute (for example) if there are emails to be sent and in case there are, it sends up to 10 mails every time.