TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How do I solve this?

3 pointsby vs2370over 9 years ago
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 comments

CyberFonicover 9 years ago
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 未加载
c22over 9 years ago
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_over 9 years ago
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 未加载
mtmailover 9 years ago
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>