A friend of mine has been running a fairly successful e-commerce operation for the last 3 years, and he's been having trouble with sending emails to a mailing list of between 700 and 800k email addresses. Basically, the volume of emails is starting to bog down his servers and T1 lines. Does anyone have suggestions for 1) balancing he load when sending the emailers out to minimize the impedance of email campaigns on the servers and connection or 2) a cost-effective alternative to which the email campaigns can be outsourced.<p>Thanks!
It seems like Unix tools could be used to chop this up fairly effectively. For example, if you had a single text file with all target addresses in it, one per line...<p>- "split" could be used to cut the list into chunks (separate files)<p>- delays could be set up in tools such as "at" or "crontab", so that E-mails of each sub-file are attempted at entirely different times (e.g. an hour apart)<p>- a script written in shell or almost anything else could iterate over a given file's addresses and send messages
Er, there are 86400 seconds in a day (not considering leap seconds, etc) so just sending 10 per second should get them all out in a day. That doesn't sound too many, or too much.<p>Where is the bottleneck? Has he profiled the process?