如何让用户通过点击php中发送给他们的电子邮件中的链接来激活他们的订阅


how to let user activate their subscription by letting them click on a link in an email which was sent to them, in php?

我通过使用知道

function checkEmail( $email ){
    return filter_var( $email, FILTER_VALIDATE_EMAIL );
}

我们可以检查一封有效的电子邮件,但我想通过向用户发送一封带有激活链接的电子邮件来知道它是假的还是真的,用户需要点击激活链接才能注册。

如何使用PHP完成整个过程?

http://net.tutsplus.com/tutorials/php/how-to-implement-email-verification-for-new-members/

试着循序渐进。

这是谷歌上的结果二:

php check email subscription link
相关文章: