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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How do you send mails from Amazon EC2?

8 点作者 maconic超过 15 年前
I'm using Amazon EC2 to host a web server, but Amazon EC2's IP address space is blocked by Trend Micro MAPS DUL (http://securecloud.com/help/en/about_the_dul.html). Given that sending emails from a web server is often necessary, I need a way to send emails from the web server. I was using the Google Apps SMTP server for this until our website had enough users that we passed the Google Apps daily email limit. So now I'm looking for an alternative way to send emails. I'm sure many other YC News readers have encountered this... any suggestions?<p>Clarification: I don't mean email marketing services like ConstantContact.com but rather mail servers that can be used directly from our web server to send email notifications.

6 条评论

Magneus超过 15 年前
I'm not sure who to recommend you to for an immediate solution, but it looks like Amazon is in the process of putting together an in-house SMTP service: <a href="http://mailchannels.com/contact/ec2-outbound-inquiry.html" rel="nofollow">http://mailchannels.com/contact/ec2-outbound-inquiry.html</a>
wrs超过 15 年前
If you're willing to risk going over a vague TOS restriction (no "excessive" usage), try fusemail.com.<p>If you want to pay for certainty, some standard SMTP services are: Sendgrid, AuthSMTP, fastmail.fm.
RobGR超过 15 年前
What you really need is an smtp relay, on a fixed IP, carefully configured to relay only from your hosts and on a reputable block of IP addresses.<p>That is entirely possible. The server itself does not have to be very extreme, the lowest end Rackspace cloud or Godaddy server should do it, it all just comes down to if those IP addresses are blocked too.<p>The real problem is that you will spend too much time figuring out reverse DNS, SPF records, and all kind of email trivia. I'm not sure it's really worth it. How many customers do you lose if you just ignore the problem ?<p>If you can't just ignore the problem, get a host on a reputable block of IPs and hire a freelance sys admin to set up and baby the system. You will want to monitor bounce rates and other metrics and fix problems as they arise.
评论 #1100376 未加载
scraplab超过 15 年前
We use AuthSMTP.<p><a href="http://www.authsmtp.com/" rel="nofollow">http://www.authsmtp.com/</a>
评论 #1100698 未加载
rksprst超过 15 年前
We're going to be using SendGrid <a href="http://www.sendgrid.com" rel="nofollow">http://www.sendgrid.com</a>
bhiggins超过 15 年前
We have Postini already, so we decided to relay through them. Also, I noticed that my emails were blocked before I had an elastic IP, but after I got an elastic IP address they weren't. YMMV.