When users register, should I store their email in the db as is or hash it. I want to be able to decrypt it later, so should I use md5?
thank you!
md5 isn't an encryption method it's a one way hash. There's no reason to encrypt email addresses in the database. I would leave them as is.