WillHaack
WillHaack

Reputation: 596

Adding + text before the @ in an email

I know with gmail you can have people email you at your email with a +sometext appended to the end of your email and you will receive the email as if it were sent to your normal email. For example, if your email is:

[email protected]

I can email

[email protected]

and [email protected] will receive the email.

Is this a standard for email or only a feature of a few email clients? I'm writing a script that signs up users for an account on a website, and I want that script to work for users who already have an account on said website. My plan is to sign them up with

[email protected]

Thanks for the help.

Upvotes: 3

Views: 2894

Answers (2)

davidcondrey
davidcondrey

Reputation: 36003

Qmail uses the negative sign instead of + to similar effect.

Meetup blocks the + sign all together, stating their reasoning as spam control.. https://mobile.twitter.com/meetup_support/status/499291392649080832

You can read more about this in RFC822 http://www.w3.org/Protocols/rfc822/ and RFC5322 https://www.rfc-editor.org/rfc/rfc5322#section-3.2

Upvotes: 3

It's a defacto standard that has been around for at least 25 years. However while most email systems will honor the user+tag convention, I am not aware of any RFC that dictates they must honor it.

On the other hand, I'm not aware of any email system where this doesn't work. I'm sure there are some.

Upvotes: 4

Related Questions