website logo
Navigate through spaces
Chord Commerce
⌘K
Getting Started
CMS
Data
OMS
Integrations
👩‍💻Developer Tools
Shopify
Docs powered by archbee 

Transaction emails



Introduction

Transactional Emails are the mandatory post-purchase email communications that we send to customers. These emails are content managed in Contentful, and set via our email services.‌

Where are the transactional emails?

List of Transactional Emails

Inky

In order to be more flexible in creating emails, we are using Inky as a templating language to essentially convert complex HTML tags into a much simpler approach.‌Inky simplifies the process of creating HTML emails by expanding out simple tags like <row> and <column> into full table syntax.

With Inky, we can inject variables into our HTML templates that will be replaced with values from the order when they are compiled into HTML (see {{ship_address.firstname}} in the example below).



Note: You can still use HTML‌‌

Chord's used variables

{{ship_address.firstname}}

{{#first_package_tracking.url}}

{{#line_items}}

{{name}

{{#options_text}}

{{#is_bundle}}

{{/parts}}

{{quantity}}

{{price}}

{{#promo_total}}

{{#payment_charge}}

{{shipment_total}}

{{#store_credit_applied}}

{{ship_address.full_name}}

{{ship_address.address1}}

{{#ship_address.address2}}

{{ship_address.city}},

{{ship_address.state}}

{{ship_address.zipcode}}

{{shipping_method}}

{{#trackings}}

{{#url}}

{{order_total_after_store_credit}}

{{purl_link}

{{email}}

{{credit}}

{{reimbursement_total}}

{{updated_order_total}}

{{credit_balance}}

Example 1:



Example 2:



Sections

Sections render blocks of text one or more times, depending on the value of the key in the current context.A section begins with a pound and ends with a slash. That is {{#person}}begins a "person" section while {{/person}} ends it. More information here

Additional Information

https://github.com/foundation/foundation-emails/blob/v2.2.1/scss/foundation-emails.scss



Text
|

‌The main way to get started is with Foundation for Emails and CSS styled emails without the hassle

A tool to help implement and test customizations to Chord email templates.

If you can achieve your needs by overriding a few styles within the Contentful Email's Custom Styles field, this tool isn't necessary. It exists for those looking to completely customize the branding of their email templates.

Chord email templates are powered by Foundation for Emails and this repository is based on their foundation/foundation-emails-template project. See the foundation/foundation-emails repository README for additional information.

Updated 30 Nov 2022
Did this page help you?
Yes
No
UP NEXT
Data
Docs powered by archbee 
TABLE OF CONTENTS
Introduction
Where are the transactional emails?
List of Transactional Emails
Inky
Chord's used variables
Sections
Additional Information