I want to send emails with waiting like this:
You get the all receiver list from a .txt file and you set a time (for example: 50 seconds and 20 people) It needs to send email to 20 people and wait for 50 seconds then continue to send mails from that list.
I think it needs to be before then this code:
SmtpServer.Send(message);
like wait for a while then continue to send emails...
I don't know maybe standard System.Net.Mail
library doesn't have a function like this. Maybe we can use EASendMail library but i haven't got any information about using it.
FOR ANOTHER EXAMPLE: Imagine that I'm a company which needs to send 1000 mails to workers. If I send it directly My IP will get red listed and my mails goes to "SPAMBOX" and my workers can't see my important mail. I need to send them like this way : Send 10 workers then wait for 1 minute after that continue to send 10 workers and wait for 1 minute... It needs to go like this. But I can't find a way to do this.
Can you help me?