/** * * @param {String} loginUrl - login Url shared with registered user. * @param {String} monitorName * @param {String} timeStamp * @returns {String} returns html content as String */ const downAlertTemplate = (loginUrl, monitorName, timeStamp) => { return `
 

Uptime Monitor

by BlueWave Labs

System Down Alert

Your monitor service requires your attention

  • ${monitorName}
  • ${timeStamp}
  • Login your account to see more details!

    © 2024 BlueWave Labs. All Rights Reserved.

     
    ` } module.exports = { downAlertTemplate }