account_new.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <!--@subject {{trans "Welcome to %store_name" store_name=$store.getFrontendName()}} @-->
  8. <!--@vars {
  9. "var this.getUrl($store, 'customer/account/')":"Customer Account URL",
  10. "var customer.email":"Customer Email",
  11. "var customer.name":"Customer Name"
  12. } @-->
  13. {{template config_path="design/email/header_template"}}
  14. <p class="greeting">{{trans "%name," name=$customer.name}}</p>
  15. <p>{{trans "Welcome to %store_name." store_name=$store.getFrontendName()}}</p>
  16. <p>
  17. {{trans
  18. 'To sign in to our site, use these credentials during checkout or on the <a href="%customer_url">My Account</a> page:'
  19. customer_url=$this.getUrl($store,'customer/account/',[_nosid:1])
  20. |raw}}
  21. </p>
  22. <table class="email-credentials">
  23. <tr>
  24. <th>{{trans "Email:"}}</th>
  25. <td>{{var customer.email}}</td>
  26. </tr>
  27. <tr>
  28. <th>{{trans "Password:"}}</th>
  29. <td><em>{{trans "Password you set when creating account"}}</em></td>
  30. </tr>
  31. </table>
  32. <p>
  33. {{trans
  34. 'Forgot your account password? Click <a href="%reset_url">here</a> to reset it.'
  35. reset_url="$this.getUrl($store,'customer/account/createPassword/',[_query:[id:$customer.id,token:$customer.rp_token],_nosid:1])"
  36. |raw}}
  37. </p>
  38. <br />
  39. <p>{{trans "When you sign in to your account, you will be able to:"}}</p>
  40. <table class="email-features">
  41. <tr>
  42. <td>
  43. <table>
  44. <tr>
  45. <td>
  46. <img src="{{view url='Magento_Customer/images/icn_checkout.png'}}" height="30" width="30" alt="{{trans 'Quick Checkout'}}" />
  47. </td>
  48. <td>
  49. <h3>{{trans "Proceed through checkout faster"}}</h3>
  50. </td>
  51. </tr>
  52. </table>
  53. </td>
  54. <td>
  55. <table>
  56. <tr>
  57. <td>
  58. <img src="{{view url='Magento_Customer/images/icn_status.png'}}" height="30" width="30" alt="{{trans 'Order Status'}}" />
  59. </td>
  60. <td>
  61. <h3>{{trans "Check the status of orders"}}</h3>
  62. </td>
  63. </tr>
  64. </table>
  65. </td>
  66. </tr>
  67. <tr>
  68. <td>
  69. <table>
  70. <tr>
  71. <td>
  72. <img src="{{view url='Magento_Customer/images/icn_address.png'}}" height="30" width="30" alt="{{trans 'Manage Addresses'}}" />
  73. </td>
  74. <td>
  75. <h3>{{trans "Store alternative addresses"}}</h3>
  76. <p>{{trans "For shipping to multiple family members and friends"}}</p>
  77. </td>
  78. </tr>
  79. </table>
  80. </td>
  81. <td>
  82. <table>
  83. <tr>
  84. <td>
  85. <img src="{{view url='Magento_Customer/images/icn_history.png'}}" height="30" width="30" alt="{{trans 'Order History'}}" />
  86. </td>
  87. <td>
  88. <h3>{{trans "View past orders"}}</h3>
  89. </td>
  90. </tr>
  91. </table>
  92. </td>
  93. </tr>
  94. </table>
  95. {{template config_path="design/email/footer_template"}}