ResetPasswordMail.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <div>
  3. <div style="width: 100%; background-color: #f7f7f7; color: #4a596c; position: relative;">
  4. <div
  5. style="
  6. width: 960px;
  7. box-sizing: border-box;
  8. padding: 20px 80px;
  9. margin: 0 auto;
  10. background-color: #fff;
  11. "
  12. >
  13. <div style="background-color: #fff; margin: 0 auto">
  14. <p style="text-align: center">
  15. <img
  16. src="https://promocollection.s3.ap-southeast-2.amazonaws.com/uploads/goodsfolder/logo.png"
  17. />
  18. </p>
  19. <hr />
  20. <div
  21. style="
  22. padding-top: 18px;
  23. margin-bottom: 38px;
  24. font-size: 18px;
  25. "
  26. >
  27. <table>
  28. <tr>
  29. <td style="position: relative; width: 200px; color: #02bde3; font-weight: bold;">
  30. <div style="width: 100%; text-align: left">
  31. Home&lifestyle
  32. </div>
  33. </td>
  34. <td style="position: relative; width: 200px; color: #02bde3; font-weight: bold;">
  35. <div style="width: 100%; text-align: center">
  36. Antibacterial range
  37. </div>
  38. </td>
  39. <td style="position: relative; width: 200px; color: #02bde3; font-weight: bold;">
  40. <div style="width: 100%; text-align: center">
  41. Technology
  42. </div>
  43. </td>
  44. <td style="position: relative; width: 200px; color: #02bde3; font-weight: bold;">
  45. <div style="width: 100%; text-align: right">
  46. Outdoor & leisure
  47. </div>
  48. </td>
  49. </tr>
  50. </table>
  51. </div>
  52. <p>Hello! {{ mailData.name }}</p>
  53. <p style="width: 620px; margin: 40px 0px 20px">
  54. Please click the link below or copy and paste it into your browser
  55. to create a new password on the PromoCollection website.
  56. </p>
  57. <p>
  58. <a
  59. :href="mailData.Url + '?email=' + mailData.email"
  60. target="_blank"
  61. style="color: #5c7dd4"
  62. >
  63. {{ mailData.Url + "?email=" + mailData.email }}
  64. </a>
  65. </p>
  66. <p style="margin: 20px auto 30px">
  67. This link is valid for 3 hours after receiving this email.
  68. </p>
  69. </div>
  70. </div>
  71. <div style="height: 24px; width: 960px; background-color: #f7f7f7;"></div>
  72. <div
  73. style="
  74. width: 960px;
  75. box-sizing: border-box;
  76. padding: 20px 80px;
  77. margin: 0 auto;
  78. background-color: #fff;
  79. "
  80. >
  81. <div style="height: 180px; background-color: #fff; margin: 0 auto">
  82. <p style="color: #02bde3; font-size: 22px">
  83. Have more questions? contact us!
  84. </p>
  85. <p style="margin: 20px 0">Phone: 1300 369 252</p>
  86. <p>
  87. Email:
  88. <span style="color: #5c7dd4; text-decoration: underline">
  89. Info@promocollection.uk
  90. </span>
  91. </p>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. </template>
  97. <script>
  98. export default {
  99. props: {
  100. mailData: {},
  101. },
  102. };
  103. </script>
  104. <style lang="scss" scoped></style>