email_v2.html 638 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>index</title>
  5. </head>
  6. <body>
  7. <h1>客戶資料</h1>
  8. <div>編號:{{context.time_stamp}}</div>
  9. <div>姓名:{{context.name}}</div>
  10. <div>電話:{{context.phone}}</div>
  11. <div>郵件:{{context.mail}}</div>
  12. <h1>裝修資料</h1>
  13. <table>
  14. <tr>
  15. <th>地區</th>
  16. <th>{{context.loc}}</th>
  17. </tr>
  18. <tr>
  19. <th>房屋類型</th>
  20. <th>{{context.h_class}}</th>
  21. </tr>
  22. <tr>
  23. <th>坪數</th>
  24. <th>{{context.size}}</th>
  25. </tr>
  26. </table>
  27. </body>
  28. </html>