const config = require('config'); const mail = require('../index'); /** * Sends a request password email * * @param {String} to - the email address of the recipient * @param {String} username - the username of the recipient * @param {String} code - the password code of the recipient * @param {Function} cb - gets called when an error occurred or when the operation was successful */ module.exports = function(to, username, code, cb) { let data = { from: 'Musare ', to: to, subject: 'Password request', html: ` Hello there ${username},

Someone has requested to add a password to your account. If this was not you, you can ignore this email.

The code is ${code}. You can enter this code on the page you requested the password on. This code will expire in 24 hours. ` }; mail.sendMail(data, cb); };