This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% capture email_title %}Your order was updated {% 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"> | |
| <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css"> | |
| <style> | |
| .button__cell { background: {{ shop.email_accent_color }}; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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"> | |
| <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css"> | |
| <style> | |
| .button__cell { background: {{ shop.email_accent_color }}; } | |
| a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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"> | |
| <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css"> | |
| <style> | |
| .button__cell { background: {{ shop.email_accent_color }}; } | |
| a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% capture email_title %}Your order has been canceled{% endcapture %} | |
| {% capture email_body %} | |
| {% if financial_status == 'voided' %} | |
| {% case cancel_reason %} | |
| {% when 'customer' %} | |
| Order {{ name }} was canceled at your request and your payment has been voided | |
| {% when 'inventory' %} | |
| Order {{ name }} was canceled because we did not have enough stock to fulfill your order and your payment has been voided | |
| {% when 'fraud' %} | |
| Order {{ name }} was canceled because we suspect it is fraudulent and your payment has been voided |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% if refund_line_items.size == item_count %} | |
| {% capture email_title %}Your order has been refunded{% endcapture %} | |
| {% elsif refund_line_items.size == 0 %} | |
| {% capture email_title %}You have received a refund{% endcapture %} | |
| {% else %} | |
| {% capture email_title %}Some items in your order have been refunded{% endcapture %} | |
| {% endif %} | |
| {% capture email_body %}Total amount refunded: <strong>{{ amount | money_with_currency }}</strong>{% endcapture %} | |
| <!DOCTYPE html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% capture email_title %}Complete your purchase{% endcapture %} | |
| {% capture email_body %} | |
| {% if item_count > 1 %} | |
| These items will be reserved for you until: <strong>{{ reserve_inventory_until | date: format: 'default' }}</strong> | |
| {% else %} | |
| This item will be reserved for you until: <strong>{{ reserve_inventory_until | date: format: 'default' }}</strong> | |
| {% endif %} | |
| {% endcapture %} | |
| <!DOCTYPE html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% capture email_title %}Are you ready to complete your order?{% 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"> | |
| <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css"> | |
| <style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% capture email_title %} | |
| {% if item_count == 1 %} | |
| You left an item in your cart | |
| {% else %} | |
| You left items in your cart | |
| {% endif %} | |
| {% endcapture %} | |
| {% capture email_body %} | |
| {% if billing_address.first_name %} | |
| {% if item_count == 1 %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% capture email_title %} | |
| Thank you for your purchase! | |
| {% 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"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% capture email_title %}{% 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"> | |
| <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css"> | |
| <style> |