Initial commit

This commit is contained in:
2020-01-27 08:56:08 +01:00
commit b7525048d6
27129 changed files with 3409855 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="send_comfirmation_freeshipping.html" server="51.254.220.106//web/" local="131351946000000000" remote="131351946000000000" />
<file name="send_comfirmation_freeshipping.txt" server="51.254.220.106//web/" local="131351946000000000" remote="131351946000000000" />
</dwsync>

View File

@@ -0,0 +1,39 @@
{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 l="Your order %ref has been shipped" ref={$order_ref} d="freeshipping.email.default"}{/block}
{* Title *}
{block name="email-title"}{intl l="Your order %ref has been shipped" ref={$order_ref} d="freeshipping.email.default"}{/block}
{* Content *}
{block name="email-content"}
{loop type="customer" name="customer.order" current="false" id="$customer_id" backend_context="1"}
<p>{intl l="Dear" d="freeshipping.email.default"} {$FIRSTNAME} {$LASTNAME},</p>
{/loop}
<p>{intl l="Thank you for your order on our online store %name" name={config key="store_name"} d="freeshipping.email.default"}.</p>
{loop name="order.invoice" type="order" id=$order_id customer="*"}
<p>{intl l="Your order %ref dated %date_order has been shipped on %update_date" ref={$order_ref} date_order={format_date date=$CREATE_DATE output="date"} update_date={format_date date=$UPDATE_DATE output="date"} d="freeshipping.email.default"}.
{if $package}{intl l="The tracking number for this delivery is %package" package={$package} d="freeshipping.email.default"}.{/if}</p>
{if $package}
<p>{intl l="You can use this tracking number to get your parcel in your local post office" d="freeshipping.email.default"}.
{intl l="If don't get an advice in your mailbox after two working days, claim your parcel at your local post office, using this tracking number" d="freeshipping.email.default"}.
</p>
{else}
<p>
{intl l="If don't get an advice in your mailbox after two working days, claim your parcel at your local post office" d="freeshipping.email.default"}.
</p>
{/if}
{/loop}
<p>{intl l="Feel free to contact us for any forther information" d="freeshipping.email.default"}</p>
<p>{intl l="Best Regards." d="freeshipping.email.default"}</p>
{/block}

View File

@@ -0,0 +1,20 @@
{loop type="customer" name="customer.order" current="false" id="$customer_id" backend_context="1"}
{intl l="Dear" d="freeshipping.email.default"} {$FIRSTNAME} {$LASTNAME},
{/loop}
{intl l="Thank you for your order on our online store %name" name={config key="store_name"} d="freeshipping.email.default"}.</p>
{loop name="order.invoice" type="order" id=$order_id customer="*"}
{intl l="Your order %ref dated %date_order has been shipped on %update_date" ref={$order_ref} date_order={format_date date=$CREATE_DATE output="date"} update_date={format_date date=$UPDATE_DATE output="date"} d="freeshipping.email.default"}.
{if $package}{intl l="The tracking number for this delivery is %package" package={$package} d="freeshipping.email.default"}.{/if}
{if $package}
{intl l="You can use this tracking number to get your parcel in your local post office" d="freeshipping.email.default"}.
{intl l="If don't get an advice in your mailbox after two working days, claim your parcel at your local post office, using this tracking number" d="freeshipping.email.default"}.
{else}
{intl l="If don't get an advice in your mailbox after two working days, claim your parcel at your local post office" d="freeshipping.email.default"}
{/if}
{/loop}
{intl l="Feel free to contact us for any forther information" d="freeshipping.email.default"}
{intl l="Best Regards." d="freeshipping.email.default"}