email_v2.html 589 B

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