user1347271
user1347271

Reputation: 127

How to create anonymized email address

I need to implement an anonymized email adress feature in my website, much like airbnb and homeaway do.

They create an anonymous address for each conversation between renter and landlord.

For example, homeaway has [email protected]

And airbnb has [email protected]

(the ids leading @ have been altered).

Airbnb reference: http://blog.airbnb.com/introducing-anonymized-email-addresses-airbnb/

I'm using node.js and sendgrid for sending emails. What is the process behind this that I should be using?

Upvotes: 3

Views: 1028

Answers (1)

fredt
fredt

Reputation: 24352

The homeaway esample looks like a UUID string. Check this on how to generate UUID strings.

How to store UUID as an alphanumeric in nodejs

Upvotes: 0

Related Questions