0

I have read a few other posts on here about mass emailing, but I need some other information. We want to integrate our mass e-mail system into our current application, but I fear this may not be a good idea. Does anyone have any input as to what kind of resources are needed to send, potentially, 1000's of emails an hour? We only have one web server right now and do not have access to our mail server. We do have full access to our web server, however. Would it be a bad idea to host the mass e-mail application on our current server? Should we have a separate sever to run this type of application and call the server via web services (WCF)? Each email would need to be sent separately because the links on the e-mail are for tracking and unsubscribing purposes. I appreciate your thoughts. Daniel

4

3 回答 3

2

是的,这是个坏主意,

检测垃圾邮件的关键之一是它来自的 IP 地址(称为它的声誉),如果您开始发送大量最终被标记为垃圾邮件的电子邮件(这很可能,即使用户说他们想收到电子邮件)您的 IP 地址可能会遇到麻烦。我不想在我的网络服务器上这样做。

至于规格,当你开始做这样的事情时,你的带宽将会受到重创。尽管我认为您会对发送电子邮件的速度感到惊讶(取决于邮件服务器)

无论哪种方式,在发送大量邮件活动时,如果您认真对待它,我会与第三方交谈,他们拥有执行不会损害您的 IP 代表的活动的知识和硬件。

于 2009-10-20T14:40:13.137 回答
0

您可以通过联系他们和/或填写批量邮件注册来提高您在某些电子邮件提供商中的声誉。

这是给雅虎的:

http://help.yahoo.com/l/us/yahoo/mail/postmaster/bulkv2.html

我不建议使用交换来交换这样的东西。您将需要一个独立的批量邮件服务器,例如 Ironport。

http://www.ironport.com/

否则,您的内部电子邮件将与您绝对不想要的所有批量电子邮件一起卡在队列中。

所涉及的实际代码不必那么复杂。在我的例子中,我们使用了一个异步任务来遍历数据库中的一个电子邮件列表,一次提取 20 个左右的批次,然后休眠几秒钟。电子邮件提供商不喜欢一次从一个来源接收成百上千封电子邮件。如果您可以按提供商错开列表,那就更好了。

于 2009-10-20T15:02:07.367 回答
0

我认为这个问题完全取决于您的邮件服务器。我参加过一个项目,我们在几个小时内发送了 50-100K 封电子邮件,主要限制是邮件服务器的容量。在我看来,让邮件客户端在 Web 服务器上运行会很好,因为如果写得好,它不会使用太多资源,主要问题是邮件服务器可以接受什么。

于 2009-10-20T14:40:58.160 回答