diff --git a/common/models/user.js b/common/models/user.js index d4a28a5c..5df1d58a 100644 --- a/common/models/user.js +++ b/common/models/user.js @@ -233,7 +233,7 @@ User.prototype.verify = function(options, fn) { options.protocol = options.protocol || 'http'; var app = userModel.app; - options.host = options.host || (app && app.get('host')) || 'localhost'; + options.host = emailOptions.host || (app && app.get('verificationHost')) || (app && app.get('host')) || 'localhost'; options.port = options.port || (app && app.get('port')) || 3000; options.restApiRoot = options.restApiRoot || (app && app.get('restApiRoot')) || '/api'; options.verifyHref = options.verifyHref ||