-
Notifications
You must be signed in to change notification settings - Fork 0
/
customer-account-password-reset.liquid
33 lines (30 loc) · 1.26 KB
/
customer-account-password-reset.liquid
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
32
33
{% capture email_title %}Reset your password{% endcapture %}
{% capture email_body %}Follow this link to reset your customer account password at <a href="{{ shop.url }}">{{shop.name}}</a>. If you didn't request a new password, you can safely delete this email.{% endcapture %}
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ email_title }}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width">
<style>
.button { background: {{ shop.email_accent_color }}; }
a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; }
</style>
</head>
<body>
{%- if shop.email_logo_url %}
<img src="{{ shop.email_logo_url }}" alt="{{ shop.name }}" width="{{ shop.email_logo_width }}">
{%- else %}
<h1>
<a href="{{ shop.url }}">{{ shop.name }}</a>
</h1>
{%- endif %}
<h2>{{ email_title }}</h2>
<p>{{ email_body }}</p>
<a href="{{ customer.reset_password_url }}">Reset your password</a>
{% if shop.url %}
or <a href="{{ shop.url }}">Visit our store</a>
{% endif %}
<p>If you have any questions, reply to this email or contact us at <a href="mailto:{{ shop.email }}">{{ shop.email }}</a></p>
</body>
</html>