TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Best way to send out large-scale emailers?

1 点作者 vette982超过 14 年前
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!

3 条评论

makecheck超过 14 年前
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
RiderOfGiraffes超过 14 年前
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?
评论 #2213601 未加载
FiReaNG3L超过 14 年前
Dada mail lets you specify a max per hour for batch sends. Never tried it with huge mailing lists however!