verifyEmail.js 403 B

12345678910111213
  1. module.exports = (data)=>{
  2. return `
  3. <div id="verifyEmail">
  4. <p>This email is to verify the account for "${data.name}" on The Subline.</p>
  5. <p>Please use the following link to verify your email:</p>
  6. <a href="${data.link}">${data.link}</a>
  7. <p>Thank you for using The Subline</p>
  8. <p>-Lee Morgan</p>
  9. </div>
  10. `;
  11. }