-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaccount_changed_by_admin.html
31 lines (25 loc) · 1.26 KB
/
account_changed_by_admin.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{extends file="email-layout.tpl"}
{* Open in browser *}
{block name="browser"}{/block}
{* No big image header *}
{block name="image-header"}{/block}
{* No pre-header *}
{block name="pre-header"}{/block}
{* Subject *}
{block name="email-subject"}{intl l="Your account information for %store" store={config key="store_name"}}{/block}
{* Title *}
{block name="email-title"}{/block}
{* Content *}
{block name="email-content"}
{intl l="Hello,"}<br /><br />
{intl l="Your account at %store_name has been changed by one of our managers." store_name={config key="store_name"}}.<br /><br />
{loop name="cust_info" type="customer" id={$customer_id} current="false"}
{intl l="To login, please use the email address <span style=\"font-family: courier, fixed; font-size: 120%\">%email</span>" email={$EMAIL}}<br /><br />
{/loop}
{if ! empty($password)}
{intl l="Your new password is <span style=\"font-family: courier, fixed; font-size: 120%\">%pass</span>" pass={$password}}<br /><br />
{/if}
{intl l='You can change your password in your user account by opening the "Change my password" link under your personal information'}.<br /><br />
{intl l='Kind regards'},<br />
{intl l="The %store team." store={config key="store_name"}}
{/block}