node-email-verification
node-email-verification copied to clipboard
✔️ Send user verification emails with NodeJS and MongoDB
# Fixed following issue https://github.com/whitef0x0/node-email-verification/issues/88
#### What's this issue about? When I run nev.createTempUser(newUser, function(err, existingPersistentUser, newTempUser) the third argument "newTempUser" is null. The code I'm using is the exact same as in the tutorial,...
OS: Windows 7 x64 node version : 9.2.0 Got this error while confirming user. This happens when tring to store temporary users into real users. { ValidationError: real_users validation failed...
I have a schema something like: ```javascript var userSchema = mongoose.Schema({ local : { email : String, password : String, verified : {type: Boolean, default: false} } ... ``` When...
Object.generateTempUserModel (node_modules/email-verification/index.js:172:29) runs into problems: ``` (node_modules/email-verification/index.js:172 Object.keys(User.schema.paths).forEach(function(field) { TypeError: Cannot read property 'paths' of undefined ``` I use node-email-verification for the first time and just updated all npm packages,...
Missing from the docs
I'm getting the following error after invoking **sendConfirmationEmail** I have provided an email address and double checked to make sure it was valid. I am still getting this error however....
Thanks for the modules but we cannot use it ! Nodemailer is deprecated before version below 4.x.x ! And your final version in production is 0.4.6 with noemailer 1.x.x !...
For testing purposes I want to get ``` nev.confirmTempUser(req.params.URL, (err, user) => { if(err) { perror(err) res.status(404).json({ msg: 'confirm_temp_usr_failed' }) } else if(user) res.render('index.html') else res.redirect('/bad-route') }) ``` to throw...