Il manquait des fichiers dans le module Mercanet (sur Git)

This commit is contained in:
2024-01-12 10:37:52 +01:00
parent 4054fddbe5
commit 485580e0b2
22 changed files with 2034 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{extends file="email-layout.tpl"}
{* Do not provide a "Open in browser" link *}
{block name="browser"}{/block}
{* No pre-header *}
{block name="pre-header"}{/block}
{* Subject *}
{block name="email-subject"}{intl d='mercanet.email.default' l="Payment of your order %ref" ref=$order_ref}{/block}
{* Title *}
{block name="email-title"}{intl d='mercanet.email.default' l="The payment of your order %ref with Mercanet is confirmed" ref=$order_ref}{/block}
{* Content *}
{block name="email-content"}
<p>
<a href="{url path="/account"}">
{intl l="View this order in your account at %shop_name" shop_name={config key="store_name"}}
</a>
</p>
<p>{intl d='mercanet.email.default' l='Thank you again for your purchase.'}</p>
<p>{intl d='mercanet.email.default' l='The %store_name team.' store_name={config key="store_name"}}</p>
{/block}

View File

@@ -0,0 +1,5 @@
{intl d='mercanet.email.default' l='Dear customer'},<br>
{intl d='mercanet.email.default' l='This is a confirmation of the payment of your order %ref with Mercanet on our shop.' ref=$order_ref}<br>
{intl d='mercanet.email.default' l='Your invoice is now available in your customer account at %url.'} url={config key="url_site"}}<br>
{intl d='mercanet.email.default' l='Thank you again for your purchase.'}<br>
{intl d='mercanet.email.default' l='The %store_name team.' store_name={config key="store_name"}}<br>