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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How do I solve this?

3 点作者 vs2370超过 9 年前
I am trying to build an app where I want to give users an email id for ex: abc@xyz.com. I am then building a parser for emails received on that email.<p>My problem is I am not sure how I can do the following : - give each user a unique email id<p>Google app emails are expensive and hosting my own mail server is complex. Is there a better way to do this? Any service, tutorials, pointers will be helpful. Thanks

4 条评论

CyberFonic超过 9 年前
I would set up a catchall email on the domain xyz.com which sends to a single destination email address. Then generate abc001, abc002, etc email address to users to have.<p>On that single email address you could parse for the unique email ids and then process as you intended to. Depending on your mail provider you could simply have a POP3 or IMAP client or a full featured SMTP &#x2F; MTA server.<p>I use a similar trick when people ask me for an email address, it is typically some.person@example.com. Then if that source spams me, etc then I can easily block emails to some.person without affecting my &quot;real&quot; email which is simply mail@example.com.
评论 #11080792 未加载
c22超过 9 年前
It looks perhaps unmaintained these days, but in the past I solved a similar problem using Lamson.<p>Lamson: <a href="https:&#x2F;&#x2F;github.com&#x2F;zedshaw&#x2F;lamson" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;zedshaw&#x2F;lamson</a><p>Previous HN discussion: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=612642" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=612642</a>
评论 #11080797 未加载
max_超过 9 年前
I recommend Namecheap&#x27;s [Email Hosting](<a href="https:&#x2F;&#x2F;www.namecheap.com&#x2F;hosting&#x2F;email.aspx" rel="nofollow">https:&#x2F;&#x2F;www.namecheap.com&#x2F;hosting&#x2F;email.aspx</a>)
评论 #11080388 未加载
mtmail超过 9 年前
Search for &quot;inbound email parsing&quot; services, e.g. <a href="http:&#x2F;&#x2F;www.mailgun.com&#x2F;inbound-routing" rel="nofollow">http:&#x2F;&#x2F;www.mailgun.com&#x2F;inbound-routing</a> or <a href="https:&#x2F;&#x2F;postmarkapp.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;postmarkapp.com&#x2F;</a>