Skip to content

email verification not working #137

@paidon

Description

@paidon

Hello,

I've tried to use out-of-the-box email verfication but had no success.
If I don't do anything, the URL http://localhost:3000/#/verify-email/1234567890 has no effect.
Then I tried to implement myself:

Meteor.Router.add({
    '/#/verify-email/:_token': function(token) { 
        Accounts.verifyEmail(token); 
        return 'verifyEmail';
    }
});

which didn't work either.
With

Meteor.Router.add({
    '/customVerification/:_token': function(token) { 
        Accounts.verifyEmail(token); 
        return 'verifyEmail';
    }
})

and pointing to http://localhost:3000/customVerification/1234567890 it works.

Could anyone help?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions