Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. var template = require('../../views/email-template.js');
  2. var htmlAll = _.template(template)(contactinfo[0]);
  3. var data = {
  4. from: company@example.com,
  5. to: email,
  6. subject: 'Your Order Confirmation',
  7. html: htmlAll
  8.  
  9. <!doctype html>
  10. <html>
  11. <head>
  12. <meta name="viewport" content="width=device-width">
  13. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  14. <title>Email</title>
  15. <style media="all" type="text/css">
  16.  
  17. // . . .
  18.  
  19. <table>
  20. // . . .
  21.  
  22. <td><%= firstName %> <%= lastName %>
  23. <br><%= company %>
  24. <br><%= address %>
  25. <br><%= city %>, <%= state.code %> <%= zip %>
  26. <br><%= email %>
  27. <br><%= phone %>
  28. </td>
  29. </tr>
  30.  
  31. </table>
  32. // . . .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement