HACKER Q&A
📣 alxthm

How do you use email aliases?


With a number of email providers you can create a number of email aliases that will redirect emails to your main inbox. This can allow you to filter incoming mail by having e.g. me@example.com, newsletters@example.com, signup@example.com. Some services allow you to have unlimited aliases (I'm thinking of https://simplelogin.io/), which makes it possible to create a new alias for every website you sign up for instance, and block the spam if you want to. And finally most services seem to support unlimited email extensions (e.g. signup+ebay@example.com, signup+spammy_website@example.com).

I'm curious about you organize your aliases/extensions?


  👤 gostsamo Accepted Answer ✓
For me, the main benefit from aliases is that in the case of a spammer, it is easy to know who leaked the address. The "+" is an actual part of the standard and it helps for self-organizing, but it is not useful against spam because it is okay to drop the +.* part (the mail will be delivered to the intended address).

👤 fabiancook
I have been using fastmail, my main email address is hi@, but I have set up a routing rule for *@, anything that is going to produce obvious spam, for example if I wanted to get a discount code through email, I would use spam@ and have a rule set up for all of these emails to go to deleted, I can still check them for 10 days.

other things I have rules set up for too, to go to inboxes.

fastmail also lets you reply as the email that was sent to, so if someone emails me at test@ they will get a response from test@


👤 hadrien01
Yahoo Mail doesn't use the plus, but they allow you to use another text as a prefix, which means spammers can't know the real email address behind the aliases.

For example, if my real address is myname@, I can set my prefix to be myothername and all my aliases will be myothername-something@. myothername@ won't be an address, so spammers can't send anything to it, and aliases have to be registered to be able to send emails to them. It's slightly more annoying than the Gmail plus system, but way more secure.


👤 fabiancook
I have been using fastmail, my main email address is hi@, but I have set up a routing rule for *, anything that is going to produce obvious spam, for example if I wanted to get a discount code through email, I would use spam@ and have a rule set up for all of these emails to go to deleted, I can still check them for 10 days.

other things I have rules set up for too, to go to inboxes.

fastmail also lets you reply as the email that was sent to, so if someone emails me at test@ they will get a response from test@


👤 profstasiak
I believe this thread was created to shill simplelogin.io.

This is the first activity of OP on this site, simplelogin seems to be new company of 4 young cofounders.


👤 drakonka
I've been using simplelogin aliases (both their domains and using my custom domain) for every new website registration or online order since I learned about it a few weeks ago. It's been excellent.

It isn't for organization, but for spam prevention, privacy, and being able to tell who leaked my email if I start receiving mail from an unexpected source.


👤 helph67
I use aliases to ensure that emails from providers go into their specific inboxes. Example credit card statements to `Myccinfo' (not the actual name). Thus new mail arrivals stand out on Thunderbird's `Folders' panel.

👤 thy77
I use the catchall feature with zoho mail. Admin@ is for companies name@ is for actual clients calendar@ is for registration for webinars. Then filtering the incoming emails into folders.

👤 taubek
I use the plus sign if service allows it.

👤 umtksa
by using aliases we (me and wife) can use just one paid google account with two mail adresses

👤 Molomby
I used "+" aliasing with a Google mailbox for years but never really loved it. It leaks your actual address and, presumably, isn't even that good at tracking who you gave which address too. Either spammers or even the company you supplied the address to initially can drop the + part to strip the "alias" away so, if your data is going to be leaked, it's not clear how much a "+" alias helps. Plus, some sites have broken/overly strict address validation so you're forced to handing out your real address to the crappiest sites.

Last December I got serious about the problem and went looking for solutions. Specifically, I wanted to be able to route email to my existing mailbox, have unlimited aliases, operate the whole thing via and API and not pay much – this is for personal use after all.

There are stacks of businesses that will give you email forwarding on a domain but I found most of them either only relay messages using a webhook, rather than forwarding the actual email (SparkPost, SendGrid, Postmark, Mailchimp) or are expensive, often with the email forwarding service being a feature point of some premium plan or having arbitrary limits (Mailgun $35/mth, MailSlurp $21/mth, ImprovMX $9/mth for 100 domains x 100 aliases, MailerSend $25/mth).

The standout at the time was Forward Email (https://forwardemail.net) who offer unlimited domains/aliases/messages for $3/mth. They're privacy focused, open source and have some nice features like regex aliases with substitution in the forward address which is cool. (So you can have rules like `/^(domains|webmaster|admin|root)$/@example.com` forwarding to `$1@example.net` and `me+$1@example.com.au`)

I now have a bash script that wraps the Forward Email API. It takes the url of the page that's asking for an email (to be logged against the new alias) and an abbreviation for the service, and it spits out a new alias, with the abbreviation and a random component, that looks nothing like my real address. I registered a domain specifically for email which is short, easy to type, and a .com (so even the harshest/most broken form validation will accept my aliases). New aliases are immediately forward to my Google mailbox and still include the service abbreviation as a "+" alias, so I can still see at a glance who sent the message. (For example an alias for Hacker News might be `hn.u2la1@example.com` which would forward to my mailbox as `me+hn@example.net`). Any mail sent to a non-alias is silently black-holed.

I've been using this for all new accounts for a few months and it's working well for me. Forward Email isn't perfect but they're cheap and seem trustworthy. Support (which I used once) was great though I'm pretty sure the entire service is a one man band so arguably the bus factor is high. The docs aren't fantastic but has been working flawlessly since I got it running.

After I had this all setup I stumbled on another service, Hanami (https://hanami.run), which would also probably work for me ($2/month for 4 domains, unlimited aliases, regex routing). And now of course Cloudflare's solution is publicly available (https://developers.cloudflare.com/email-routing). If I was starting from scratch I'd definitely consider those options.