Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

47 lignes
1.8 KiB

  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.frontend_name}} @-->
  8. <!--@vars {
  9. "var store.frontend_name":"Store Name",
  10. "var this.getUrl($store,'customer/account/',[_nosid:1])":"Customer Account URL",
  11. "var this.getUrl($store,'customer/account/createPassword/',[_query:[id:$customer.id,token:$customer.rp_token],_nosid:1])":"Password Reset URL",
  12. "var customer.email":"Customer Email",
  13. "var customer.name":"Customer Name"
  14. } @-->
  15. {{template config_path="design/email/header_template"}}
  16. <p class="greeting">{{trans "%name," name=$customer.name}}</p>
  17. <p>{{trans "Welcome to %store_name." store_name=$store.frontend_name}}</p>
  18. <p>
  19. {{trans
  20. 'To sign in to our site, use these credentials during checkout or on the <a href="%customer_url">My Account</a> page:'
  21. customer_url=$this.getUrl($store,'customer/account/',[_nosid:1])
  22. |raw}}
  23. </p>
  24. <ul>
  25. <li><strong>{{trans "Email:"}}</strong> {{var customer.email}}</li>
  26. <li><strong>{{trans "Password:"}}</strong> <em>{{trans "Password you set when creating account"}}</em></li>
  27. </ul>
  28. <p>
  29. {{trans
  30. 'Forgot your account password? Click <a href="%reset_url">here</a> to reset it.'
  31. reset_url="$this.getUrl($store,'customer/account/createPassword/',[_query:[id:$customer.id,token:$customer.rp_token],_nosid:1])"
  32. |raw}}
  33. </p>
  34. <p>{{trans "When you sign in to your account, you will be able to:"}}</p>
  35. <ul>
  36. <li>{{trans "Proceed through checkout faster"}}</li>
  37. <li>{{trans "Check the status of orders"}}</li>
  38. <li>{{trans "View past orders"}}</li>
  39. <li>{{trans "Store alternative addresses (for shipping to multiple family members and friends)"}}</li>
  40. </ul>
  41. {{template config_path="design/email/footer_template"}}