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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How do you send emails from your backend?

1 点作者 u8超过 2 年前
I run&#x2F;co-develop a small community website and we’ve just added accounts. We’re almost ready to launch but I need to finish up our email backend. I’m expecting between 500-1,500 sends a month and we’ll probably never exceed 5,000.<p>I’ve tried SendGrid, but their dashboard is unreliable. MailGun&#x2F;Jet is too pricey for our scale. And AWS SES is overtly complicated with limited documentation.<p>I’m asking how you handle emails for your applications? Is there some hidden SAS platform that can be a silver bullet or will this be a problem that costs more time than it’s worth?<p>In addition, we use Go for our backend so any services that offer a Go package would be very helpful.<p>Thanks in advance!

2 条评论

e1g超过 2 年前
We use <a href="https:&#x2F;&#x2F;postmarkapp.com" rel="nofollow">https:&#x2F;&#x2F;postmarkapp.com</a> and <a href="https:&#x2F;&#x2F;www.mailgun.com" rel="nofollow">https:&#x2F;&#x2F;www.mailgun.com</a> - both work great for us. I also like <a href="https:&#x2F;&#x2F;mailtrap.io" rel="nofollow">https:&#x2F;&#x2F;mailtrap.io</a> for testing purposes.
gregjor超过 2 年前
I have used both Mailgun and SendGrid on projects with similar numbers of outbound emails and both work as expected. I had slightly less trouble working with SendGrid. I have never seen any problems with their dashboard. You can use their API libraries, or just send a direct HTTP request, or have sendmail on the server configured to relay through SendGrid.<p>You can also relay through a GMail account if you already use GMail for inbound emails on your domain.<p>Having done this a few times with various web sites I can say it takes less than an hour to integrate MailGun or SendGrid and get it working. You probably don&#x27;t want to implement and manage an email server and bounce&#x2F;unsubscribe handling yourself.