E-mail validation link

2012-07-19 Thread Pierre Goupil
Good evening, I'm currently trying to send a validation e-mail when a user creates an account. I'd link to provide a link in order to confirm the subscription. Is there any recommended way to do that? In particular, I don't know how to write the href of the Link in my e-mail. Any help will be

Re: E-mail validation link

2012-07-19 Thread Josh Kamau
I do something like this : 1. Create a confirmation page that takes a confirmation code as a page parameter 2. Mount a page to a url that looks like http://domain.com/confirmation?code=somesupersecretcode 3. When a user registers, i generate the code and put it somewhere in the

Re: E-mail validation link

2012-07-19 Thread Pierre Goupil
Thanks Josh! :-) We'll be watching together to see if anyone has other cool solutions! Regards, Pierre On Thu, Jul 19, 2012 at 8:55 PM, Josh Kamau joshnet2...@gmail.com wrote: I do something like this : 1. Create a confirmation page that takes a confirmation code as a page

Re: E-mail validation link

2012-07-19 Thread Michal Margiel
Hello, I've implemented this in the same way as Josh does. My code for register participant for our conference[1] is open source. You can view it here[2] in particular:

Re: E-mail validation link

2012-07-19 Thread Pierre Goupil
It looks nice, Michal! I'm browsing it and I'll come back here if I have any questions, if it doesn't bother you. Thanks all! Regards, Pierre On Thu, Jul 19, 2012 at 9:10 PM, Michal Margiel michal.marg...@gmail.comwrote: Hello, I've implemented this in the same way as Josh does. My

Re: E-mail validation link

2012-07-19 Thread Michal Margiel
2012/7/19 Pierre Goupil goupilpie...@gmail.com It looks nice, Michal! I'm browsing it and I'll come back here if I have any questions, if it doesn't bother you. No problemo! we are here to help each other. So bug me as much as you want ;) btw. I was doing this for the first time. So if