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 picked up{% endcapture %} | |
{% capture email_body %}Thank you for shopping at {{ shop_name }}{% 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"> |
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 %}Sorry we missed you {% endcapture %} | |
{% capture email_body %} | |
Hi {{ customer.first_name }}, we weren’t able to deliver your order. | |
{% endcapture %} | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>{{ email_title }}</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
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 fulfillment.item_count == item_count %} | |
{% capture email_title %}Your order has been delivered{% endcapture %} | |
{% capture email_body %}Your order has been delivered. Track your shipment to see the delivery status.{% endcapture %} | |
{% elsif fulfillment.item_count > 1 %} | |
{% if fulfillment_status == 'fulfilled' %} | |
{% capture email_title %}The last items in your order has been delivered{% endcapture %} | |
{% capture email_body %}The last items in your order has been delivered. Track your shipment to see the delivery status.{% endcapture %} | |
{% else %} | |
{% capture email_title %}Some items in your order have been delivered{% endcapture %} | |
{% capture email_body %}Some items in your order have been delivered. Track your shipment to see the delivery status.{% endcapture %} |
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 fulfillment.item_count == item_count %} | |
{% capture email_title %}Your order is out for delivery{% endcapture %} | |
{% capture email_body %}Your order is out for delivery. Track your shipment to see the delivery status.{% endcapture %} | |
{% elsif fulfillment.item_count > 1 %} | |
{% if fulfillment_status == 'fulfilled' %} | |
{% capture email_title %}The last items in your order are out for delivery{% endcapture %} | |
{% capture email_body %}The last items in your order are out for delivery. Track your shipment to see the delivery status.{% endcapture %} | |
{% else %} | |
{% capture email_title %}Some items in your order are out for delivery{% endcapture %} | |
{% capture email_body %}Some items in your order are out for delivery. Track your shipment to see the delivery status.{% endcapture %} |
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 shipping status has been updated{% endcapture %} | |
{% capture email_body %}The following items have been updated with new shipping information.{% 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"> |
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 fulfillment.item_count == item_count %} | |
{% capture email_title %}Your order is on the way{% endcapture %} | |
{% capture email_body %}Your order is on the way. Track your shipment to see the delivery status.{% endcapture %} | |
{% elsif fulfillment.item_count > 1 %} | |
{% if fulfillment_status == 'fulfilled' %} | |
{% capture email_title %}The last items in your order are on the way{% endcapture %} | |
{% capture email_body %}The last items in your order are on the way. Track your shipment to see the delivery status.{% endcapture %} | |
{% else %} | |
{% capture email_title %}Some items in your order are on the way{% endcapture %} | |
{% capture email_body %}Some items in your order are on the way. Track your shipment to see the delivery status.{% endcapture %} |
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
<p>{{ service_name }},</p> | |
<br> | |
<p>Please fulfill order {{ name }}.</p> | |
<p>Total number of items: {{ fulfillment.item_count }}</p> | |
<p>Unique items: {{ fulfillment.fulfillment_line_items.size }}</p> | |
<br> | |
<p><strong>Items to fulfill:</strong></p> | |
{% for line in fulfillment.fulfillment_line_items %} | |
<p>Variant Title: {{ line.line_item.title }}</p> | |
<p>SKU: {{ line.line_item.sku }}</p> |
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> |
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 %} | |
{% 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 %} |
NewerOlder