How can I verify an email address with codeigniter? I just went through the manual, I couldn’t find this.
With email verification, i mean the exact same verification you see when registering on a community forum.
Thanks in advance!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the Email Class to send the email. The email could contain a link with a “secret key”, something random and hash-like, like 5dfg7898ssdf (I made that one up 🙂 ). The link could point to: example.com/verify/user/5dfg7898ssdf Then in a codeigniter controller called “verify”, you put this function (just some quick code):