We are implementing marketing application with C#, In this application we need to send at least 1000 email to users,I have an email sender class.I have two important question:
- How can I send these emails without going to users's SPAM folder?
- Is there any design pattern for implementing this kind of class, I don't like to instantiate email class for every user,I would like to send email one by one, thread safe and without have performance impact on server.