account_new.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <ul>
  23. <li><strong>{{trans "Email:"}}</strong> {{var customer.email}}</li>
  24. <li><strong>{{trans "Password:"}}</strong> <em>{{trans "Password you set when creating account"}}</em></li>
  25. </ul>
  26. <p>
  27. {{trans
  28. 'Forgot your account password? Click <a href="%reset_url">here</a> to reset it.'
  29. reset_url="$this.getUrl($store,'customer/account/createPassword/',[_query:[id:$customer.id,token:$customer.rp_token],_nosid:1])"
  30. |raw}}
  31. </p>
  32. <p>{{trans "When you sign in to your account, you will be able to:"}}</p>
  33. <ul>
  34. <li>{{trans "Proceed through checkout faster"}}</li>
  35. <li>{{trans "Check the status of orders"}}</li>
  36. <li>{{trans "View past orders"}}</li>
  37. <li>{{trans "Store alternative addresses (for shipping to multiple family members and friends)"}}</li>
  38. </ul>
  39. {{template config_path="design/email/footer_template"}}