password_new.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <!--@subject {{trans "Reset your %store_name password" store_name=$store.getFrontendName()}} @-->
  8. <!--@vars {
  9. "var this.getUrl(store, 'customer/account/')":"Customer Account URL",
  10. "var customer.name":"Customer Name"
  11. } @-->
  12. {{template config_path="design/email/header_template"}}
  13. <p class="greeting">{{trans "%name," name=$customer.name}}</p>
  14. <p>{{trans "There was recently a request to change the password for your account."}}</p>
  15. <p>{{trans "If you requested this change, set a new password here:"}}</p>
  16. <table class="button" width="100%" border="0" cellspacing="0" cellpadding="0">
  17. <tr>
  18. <td>
  19. <table class="inner-wrapper" border="0" cellspacing="0" cellpadding="0" align="center">
  20. <tr>
  21. <td align="center">
  22. <a href="{{var this.getUrl($store,'customer/account/createPassword',[_query:[id:$customer.id,token:$customer.rp_token],_nosid:1])}}" target="_blank">{{trans "Set a New Password"}}</a>
  23. </td>
  24. </tr>
  25. </table>
  26. </td>
  27. </tr>
  28. </table>
  29. <p>{{trans "If you did not make this request, you can ignore this email and your password will remain the same."}}</p>
  30. {{template config_path="design/email/footer_template"}}