| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE html>
- <html lang="sk">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="color-scheme" content="light dark">
- <meta name="supported-color-schemes" content="light dark">
-
- <title>new warnings!</title>
- </head>
- <body style="margin: 0; padding: 0; background-color: #eeeeee; font-family: sans-serif;">
- <div style="display: none; max-height: 0px; overflow: hidden; font-size: 1px; line-height: 1px; color: #eeeeee;">
- new warnings have been activated on your station <%= it.station.name %>.
- ‌ ‌ ‌ ‌ ‌ ‌
- ‌ ‌ ‌ ‌ ‌ ‌
- </div>
-
- <table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#eeeeee" style="background-color: #eeeeee;">
- <tr>
- <td align="center" style="padding: 20px 10%;">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
-
- <tr>
- <td style="padding-top: 10px; padding-bottom: 10px;">
- <h2 style="margin: 0; font-size: 24px; color: #000000;"><%= process.env.APP_NAME %></h2>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 10px;">
- <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">hi,</p>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 10px;">
- <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">the following warnings have been activated on your station <strong><%= it.station.name %></strong>:</p>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 10px;">
- <ul style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">
- <% for (const warning of it.warnings) { %>
- <li><%= warning %></li>
- <% } %>
- </ul>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 10px;">
- <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">you can monitor them by clicking on the button below.</p>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 15px;">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td align="center" bgcolor="#3232ff" style="border-radius: 8px; background-color: #3232ff;">
- <a href="<%= it.stationLink %>" target="_blank" style="padding: 10px 20px; font-size: 16px; color: #eeeeee; text-decoration: none; display: inline-block; font-weight: normal;">
- monitor warnings
- </a>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 30px;">
- <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">
- cannot click on the link? copy it: <span style="word-break: break-all;"><%= it.stationLink %></span>
- </p>
- </td>
- </tr>
- <tr>
- <td style="border-top: 1px solid #cccccc; padding-top: 20px;">
- <p style="margin: 0;"><small style="font-size: 12px; color: #666666;"><%= process.env.APP_NAME %> <%= new Date().getFullYear() %></small></p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|