export default function emailTest(mailTo, username) { const template = { from: 'BorgWarehouse' + '<' + process.env.MAIL_SMTP_FROM + '>', to: mailTo, subject: 'Testing email settings', text: 'If you received this email then the mail configuration seems to be correct.', html: `
BorgWarehouse

Good job, ` + username + ` !

If you received this mail then the configuration seems to be correct.

About BorgWarehouse

`, }; return template; }