email-verify-new-email.ejs 1007 B

12345678910
  1. <% /* Note: This is injected into `views/layouts/layout-email.ejs` */ %>
  2. <div style="padding: 25px; margin-top:10px; background-color: #14acc2; border-top-left-radius: 6px; border-top-right-radius: 6px; border: 1px solid #0c8da0;">
  3. <h2 style="text-align: center; color: #ffffff; margin:0px; font-size: 34px;">Confirm your email</h2>
  4. </div>
  5. <div style="background-color: #ffffff; padding: 25px; margin-bottom: 25px; color: #303030; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border: 1px solid #cccccc;">
  6. <p style="margin-bottom: 35px;">Dear <%= fullName %>,</p>
  7. <p>You recently requested an update to the email address for your account. To verify your new email, please click the link below:</p>
  8. <p style="margin-bottom: 35px;"><a style="color: #14acc2" href="<%= url.resolve(sails.config.custom.baseUrl,'/email/confirm')+'?token='+encodeURIComponent(token) %>"><%= url.resolve(sails.config.custom.baseUrl,'/email/confirm')+'?token='+encodeURIComponent(token) %></a></p>
  9. </div>