layout-email.ejs 1.4 KB

1234567891011121314151617
  1. <% /* Default layout for email templates */ %>
  2. <div style="width: 100%; background-color: #efefef; font-family: 'Helvetica Neue', 'Helvetica', sans-serif; box-sizing: border-box; padding-bottom: 25px; padding-top: 25px;" >
  3. <div style="width: 90%; max-width: 800px; margin: 0px auto;">
  4. <%- body %>
  5. <div style="text-align: center;">
  6. <nav style="color: #cccccc; font-size: 14px;">
  7. <a style="color: #0c8da0;" href="<%= url.resolve(sails.config.custom.baseUrl, '/contact') %>">Help</a> &nbsp;|&nbsp;
  8. <a style="color: #0c8da0;" href="<%= url.resolve(sails.config.custom.baseUrl, '/faq') %>">FAQ</a> &nbsp;|&nbsp;
  9. <a style="color: #0c8da0;" href="<%= url.resolve(sails.config.custom.baseUrl, '/legal/terms') %>">Terms of Service</a> &nbsp;|&nbsp;
  10. <a style="color: #0c8da0;" href="<%= url.resolve(sails.config.custom.baseUrl, '/legal/privacy') %>">Privacy Policy</a>
  11. </nav>
  12. <p style="color: #787878; font-size: 11px;">Please do not reply to this email. To get in touch with us, visit our <a style="color: #0c8da0;" href="<%= url.resolve(sails.config.custom.baseUrl, '/contact') %>"> help center.</a> <br>If you have not signed up for an account with us, please disregard this message.</p>
  13. <p style="color: #9f9f9f; font-size: 10px; text-align: center;"><em>(built with <a href="https://sailsjs.com">Sails.js</a>)</em></p>
  14. </div>
  15. </div>
  16. </div>