let templater = require('../templater'); module.exports = function({params}) { let message = templater`Hello ${params.name}, I am writing to inform you that I am testing a templated email. I have tested it ${params.times} times. ${params.valediction}, ${params.senderName} `; let subject = "New message from webmailer program!"; return {subject, message}; }