account_new_confirmation.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <!--@subject {{trans "Please confirm your %store_name account" store_name=$store.getFrontendName()}} @-->
  8. <!--@vars {
  9. "var this.getUrl($store, 'customer/account/confirm/', [_query:[id:$customer.id, key:$customer.confirmation, back_url:$back_url]])":"Account Confirmation URL",
  10. "var this.getUrl($store, 'customer/account/')":"Customer Account URL",
  11. "var customer.email":"Customer Email",
  12. "var customer.name":"Customer Name"
  13. } @-->
  14. {{template config_path="design/email/header_template"}}
  15. <p class="greeting">{{trans "%name," name=$customer.name}}</p>
  16. <p>{{trans "You must confirm your %customer_email email before you can sign in (link is only valid once):" customer_email=$customer.email}}</p>
  17. <table class="button" width="100%" border="0" cellspacing="0" cellpadding="0">
  18. <tr>
  19. <td>
  20. <table class="inner-wrapper" border="0" cellspacing="0" cellpadding="0" align="center">
  21. <tr>
  22. <td align="center">
  23. <a href="{{var this.getUrl($store,'customer/account/confirm/',[_query:[id:$customer.id,key:$customer.confirmation,back_url:$back_url],_nosid:1])}}" target="_blank">{{trans "Confirm Your Account"}}</a>
  24. </td>
  25. </tr>
  26. </table>
  27. </td>
  28. </tr>
  29. </table>
  30. {{template config_path="design/email/footer_template"}}