website logo
Navigate through spaces
⌘K
OVERVIEW
ORDER MANAGEMENT (OMS)
SHIPPING - SETUP
Shipping Methods
Shipping Zones
Shipping Method Setup Examples
TAXES - Setup
Tax Automation with Stripe Tax
Tax Automation with Avalara
CONTENT MANAGEMENT (CMS)
DATA
CUSTOMER LIFETIME REVENUE
Customer Lifetime Revenue Explanation
Customer Lifetime Revenue and Purchase Likelihood
Recency Frequency and Monetary
CLR and RFM Data Table Glossary
RFM and CLR in the Hub
LOOKER
Modifying a Dashboard
Timestamp differences between Looker, OMS and Shopify
How to create custom calculations in Looker
Looker and Shopify data models
Custom fields
How to 'Save and Schedule' reports
Creating Custom Reports or Look
Looks vs Dashboards
Login Looker FAQ
Looker Glossary
SEGMENT EVENT TRACKING
What are event tracking
Adding Tracking
What is the Tracking Plan?
The Chord Tracking Plan
The Shopify Tracking Plan
Event Tracking FAQ
EVENT UPDATES PAGE
Email Subscription Payment Event Update
Product Feed Setup
Getting Segment to Production
Consent Management
Installing in Next.js
Installing in Gatsby
Integrations
👩‍💻Developer Tools
Using Chord with Shopify
Docs powered by archbee 

Gift Subscription

19min



Introduction

Chord allows your customers to purchase a prepaid gift subscription to a person of their choice.

What is a Gift Subscription?

A gift subscription is a one-time payment and non-refundable order created by a customer (purchaser) to a person of their choice (giftee or recipient).

Giftees are not billed for the duration of their gift subscription, but if they want to keep receiving the products after the gift subscription ends, they can create a new subscription.

Purchasing a gift subscription

Visual Flow

Document image


Purchaser

The purchaser selects a gift subscription, specifies the quantity and the frequency, and provides the recipient's name, shipping address, email, and an optional gift message. The purchaser is then directed to Checkout, as the gift subscription skips the Cart, using the "Buy Now" flow, and is pre-paid in full in a single transaction. As such, they can only purchase one gift subscription at a time and not add other items to the order.

When the order is complete, the purchaser receives an email to confirm their gift subscription.

If your customer needs to cancel the gift subscription, please contact help@chord.co.



Giftee

The giftee is notified by email when the purchaser submits their gift subscription order and does not need to take any actions to confirm the gift subscription. The gift subscription starts at the time of gift purchase.

An OMS account is created for the giftee if one does not exist and, similarly to your current customer's login, is accessible through the passwordless authenticator. Although the giftee will see the gift subscription in My Account, no modifications will be available.

If the giftee has existing subscriptions along with a gift subscription, they will all display under My Account



Document image


Gift Subscription order

Let's look at a gift subscription purchase and how it translates in the OMS.

Document image


In this instance, Kyle, the purchaser, buys a gift subscription for the giftee, Courtney.

Kyle's order: You can see that the order is automatically marked as Shipped. This order serves more as a receipt and connects to Courtney's Subscription. 



Document image


If you have "Require manual approval for shipments in this zone?" set to yes, the orders will not be marked as Shipped but Pending.



Click the 1-month link next to Subscription in the Order Information section. 

The Subscription is Active and set to Prepaid.



Document image


In the Installments tab, you can see that the first order has been fulfilled.



Document image


The Orders tab displays the gift subscription order(s)



Document image


Setup in OMS

Right now, no setup is necessary for the OMS.

Emails

When the purchaser submits a gift subscription order, an email confirmation is triggered and sent to them to acknowledge their purchase.

The email contains the order total, gift subscription details, and giftee shipping address.

The email template can be edited in your CMS!

Purchaser email

Document image


The giftee is also notified by email that a gift subscription has been created for them. The email contains their shipping address, along with the gift subscription details.

The email template can be edited in your CMS!

Giftee email



Document image


The giftee will also be reminded that their subscription orders are coming up if you have Gift Reminders email settings ON. When the gift subscription is about to end, the giftee will be notified by email with the option to create a new subscription.

Segment Events

Definitions of Segment Events:

  • Email Order Completed: Fired after the order purchase flow is complete; when the gift subscription is initially purchased, this event is intended for the purchaser; after each subscription installment is created and an order is generated, this event will then be intended for the recipient.
  • Email Subscription Installment Created: Fired when a new installment for the gift subscription is created. This event is intended for the recipient.
  • Email Subscription Canceled: Fired when the gift subscription installment count has been reached, the subscription will then be automatically canceled. This event is intended for the recipient.
  • Email Subscription Generated: Fired when the gift subscription has been created. This event is intended for the recipient.
  • Email Carton Shipped: Fired when an order shipment has been fulfilled. This event is intended for the recipient.
  • Email Shipment Delivered: Fired when an order shipment has been delivered. This event is intended for the recipient.

Video

Purchasing a gift subscription



Email Template



Name = Order Confirmation Gift Prepaid Subscription Email

Slug = gift_subscription_order_confirmation_email

Email Template code

HTML
|
<wrapper class="header">
   <container>
      <row>
         <columns>
            <h3 class="text-center">
               Hey {{ship_address.firstname}},
            </h3>
            <p class="text-center">
               {{#is_initial_order_purchase_pre_paid_subscription}}
               Thank you for your recent order, we’re so excited for you.
               {{/is_initial_order_purchase_pre_paid_subscription}}
            </p>
            <p class="text-center">
               {{#is_installment_order_pre_paid_subscription}}
               Your gifted subscription order has been processed, we’re                     so excited for you.
               {{/is_installment_order_pre_paid_subscription}}
            </p>
         </columns>
      </row>
   </container>
</wrapper>
<spacer size="26"></spacer>
<container class="main">
   <row>
      <columns>
         <spacer size="35"></spacer>
         <h4 class="text-center"><em>Your Order</em></h4>
      </columns>
   </row>
   <row>
      <columns>
         <p><strong>Order Number:</strong> {{number}}</p>
         {{#line_items}}
         <table>
            <tr>
               <td class="img-block">
                  <img src="{{image}}" class="img-thumbnail">
               </td>
               <td>
                  <table class="order-details">
                     <tr>
                        <td><strong>{{name}}</strong></td>
                     </tr>
                     {{#options_text}}
                     <tr>
                        <td><em>{{options_text}}<em></td>
                     </tr>
                     {{/options_text}}
                     {{#is_bundle}}
                     <tr>
                        <td>
                           {{#parts}}
                           <div class="description">
                              {{name}}
                              {{#options_text}} 
                              <br/> 
                              <em>{{options_text}}</em>
                              {{/options_text}}
                           </div>
                           {{/parts}}
                        </td>
                     </tr>
                     {{/is_bundle}}
                     {{#is_subscription}}
                     <tr>
                        <td>
                           {{#subscription_details}}
                           <div class="description">
                              Auto-renew: {{interval}}
                           </div>
                           {{/subscription_details}}
                        </td>
                     </tr>
                     {{/is_subscription}}
                     <tr>
                        <td>Qty: {{quantity}}</td>
                     </tr>
                  </table>
               </td>
               {{#is_initial_order_purchase_pre_paid_subscription}}
               <td class="text-right">{{price}}</td>
               {{/is_initial_order_purchase_pre_paid_subscription}}
            </tr>
         </table>
         <spacer size="16"></spacer>
         {{/line_items}}
         {{#is_initial_order_purchase_pre_paid_subscription}}
         <hr class='separator'>
         <container>
            <row class='order-summary-row'>
               <columns class='order-summary-columns'>
                  <p>Subtotal</</p>
               </columns>
               <columns class='order-summary-columns'>
                  <p class='text-right'>{{item_total}}</p>
               </columns>
            </row>
            <row class='order-summary-row'>
               <columns class='order-summary-columns'>
                  <p>Tax</p>
               </columns>
               <columns class='order-summary-columns'>
                  <p class='text-right'>{{tax_total}}</p>
               </columns>
            </row>
            {{#promo_total}}
            <row class='order-summary-row'>
               <columns class='order-summary-columns'>
                  <p>Promotions</p>
               </columns>
               <columns class='order-summary-columns'>
                  <p class='text-right'>{{promo_total}}</p>
               </columns>
            </row>
            {{/promo_total}}
            <row class='order-summary-row'>
               <columns class='order-summary-columns'>
                  <p>Shipping</p>
               </columns>
               <columns class='order-summary-columns'>
                  <p class='text-right'>{{shipment_total}}</p>
               </columns>
            </row>
            {{#store_credit_applied}}
            <row class='order-summary-row'>
               <columns class='order-summary-columns'>
                  <p>Store Credits</p>
               </columns>
               <columns class='order-summary-columns'>
                  <p class='text-right'>{{store_credit_applied}}</p>
               </columns>
            </row>
            {{/store_credit_applied}}
            <row class='order-summary-row'>
               <columns class='order-summary-columns'>
                  <p>Order Total</p>
               </columns>
               <columns class='order-summary-columns'>
                  <p class='text-right'><b>{{order_total_after_store_credit}}</b></p>
               </columns>
            </row>
         </container>
         <hr class='separator'/>
         {{/is_initial_order_purchase_pre_paid_subscription}}
         <spacer size="15"></spacer>
         {{#is_installment_order_pre_paid_subscription}}
         <container>
            <hr class='separator'/>
            <row>
               <columns class='shipping-columns'>
                  <p><b>Shipping to:</b></p>
                  <p>
                     {{ship_address.full_name}}<br/>
                     {{ship_address.address1}}<br/>
                     {{#ship_address.address2}}
                     {{ship_address.address2}}<br/>
                     {{/ship_address.address2}}
                     {{ship_address.city}},
                     {{ship_address.state}}
                     {{ship_address.zipcode}}
                  </p>
               </columns>
            </row>
            <row>
               <columns class='shipping-columns'>
                  <p><b>Shipping method</b></p>
                  <p>{{shipping_method}}</p>
               </columns>
            </row>
         </container>
         {{/is_installment_order_pre_paid_subscription}}
         <container>
            <row>
               <columns class='shipping-columns'>
                  <p><b>Payment Info</b></p>
                  {{#payment_information}}
                  {{#is_initial_order_purchase_pre_paid_subscription}}
                  <p>
                     <img class="cc_icon" src="https://dtp73dbhq5jto.cloudfront.net/{{cc_type}}.png" />
                     {{cc_type}} (••••••••••••{{cc_last_digits}})
                  </p>
                  {{/is_initial_order_purchase_pre_paid_subscription}}
                  {{/payment_information}}
                  {{#is_installment_order_pre_paid_subscription}}
                  <p><em>Prepaid</em></p>
                  <hr class='separator' />
                  {{/is_installment_order_pre_paid_subscription}}
               </columns>
            </row>
            <spacer size="10"></spacer>
            {{#is_installment_order_pre_paid_subscription}}
            <row>
               <h6 class="text-center">
                  <em> This Confirms that an installment order from a                       subscription that has been prepaid and gifted to you,                     has been processed.</em>
               </h6>
            </row>
            <row>
               <p class="text-center"><b>From {{order_pre_paid_subscription.purchaser}}:                              {{order_pre_paid_subscription.gift_message}} </b></p>
            </row>
            {{/is_installment_order_pre_paid_subscription}}
            {{#is_initial_order_purchase_pre_paid_subscription}}
            <row>
               <h6 class="text-center">
                  <em> This Confirms Your PrePaid Gift                                            Subscription Purchase For Your Recipient:                                  {{order_pre_paid_subscription.recipient_fullname}}                             </em>
               </h6>
            </row>
            <row>
               <columns class='shipping-columns'>
                  <p><b>Gift Subscription Details:</b></p>
                  <p><b>No. of Installments:</b>                                                       {{order_pre_paid_subscription.installment_count}}<br/>
                     <b>Interval:</b>                                                                  {{order_pre_paid_subscription.interval}}<br/>
                     <b> Recipient Email:</b>                                                          {{order_pre_paid_subscription.recipient_email}}<br/>
                     <b> Gift Message:</b>                                                           {{order_pre_paid_subscription.gift_message}}<br/>
                     <b>Shipping Address:</b><br/>
                     {{order_pre_paid_subscription.recipient_shipping_address.full_name}}<br/>
                     {{order_pre_paid_subscription.recipient_shipping_address.address1}}  <br/>{{order_pre_paid_subscription.recipient_shipping_address.city}}<br/> {{order_pre_paid_subscription.recipient_shipping_address.state}}<br/>                 {{order_pre_paid_subscription.recipient_shipping_address.zipcode}}
                  </p>
               </columns>
            </row>
            {{/is_initial_order_purchase_pre_paid_subscription}}
         </container>
   </row>
   </columns>
</container>
<wrapper class="footer">
   <container>
      <row>
         <columns>
            <spacer size="50"></spacer>
            <h3 class="text-center">Lorem ipsum dolor sit amet.</h3>
            <spacer size="40"></spacer>
            <hr />
         </columns>
      </row>
      <row>
         <columns>
            <h4 class="text-center">
               <small>Something not right with your order?<br />
               <em>Reach out to us at <a href="mailto:hello@example.com">hello@example.com</a>.</em>
               </small>
            </h4>
         </columns>
      </row>
      <row>
         <columns>
            <center>
               <div class="legal">
                  <span>
                  <a href="https://your.site.com/privacy-policy">Privacy Policy</a>
                  </span>
                  <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
                  <span>
                  <a href="https://your.site.com/terms">Terms of Use</a>
                  </span>
                  <span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
                  <span>&copy; 2020</span>
               </div>
            </center>
         </columns>
      </row>
   </container>
</wrapper>






FAQ/Troubleshooting

Can my customers be eligible for existing subscription promotions with the gift subscription?

Currently, Gift subscriptions do not have access to subscription promotions logic or discount codes.

Does the shipping rate differ from any other subscription or non-subscription orders?

It is recommended that you can define the shipping rate as free or a specific flat rate or any other shipping base calculator of your choice.

What information is required for the purchaser to provide?

Purchaser must provide all necessary recipient information: Gift subscription options such as frequency and installments, name, giftee email, and giftee shipping information, while gift message is optional.

What happens if the information the purchaser has provided is incorrect?

Because gift subscription is a one-time payment and non-refundable order we recommend that you reach out to help@chord.co

Can you cancel a gift subscription the purchaser submitted?

Just like Gift Cards, gift subscriptions are final sales. If a cancellation is needed, please contact help@chord.co; we can assist!

Will the giftee receive a cancelation email if the purchaser needs to Cancel the order?

No, currently only the purchaser will be made aware of the cancelation.

Will the giftee need to take any action to confirm the gift subscription?

No, the giftee is notified by email, and the gift product(s) are shipped to them using the frequency and quantity the purchaser selects. 

Is there a limit for the Gift Note?

Yes, for a great user experience we have limited the field to 50 characters.

Is an account automatically created for a gift subscription recipient if one does not exist?

An OMS account is created for the recipient if one does not exist (you can search for them via email address in the OMS).

Can customers buy a gift subscription using Gift Card or Store Credit?

Yes if the purchaser has outstanding store credit on their account (when they claim their gift card, it will create store credit automatically on their account). The store credit amount will also be used towards paying for the order.

Will the gift subscription display in the purchaser’s order history?

No, the gift subscription order will only display in the Giftee's account

Updated 16 May 2023
Did this page help you?
Yes
No
PREVIOUS
Subscriptions
NEXT
Gift Subscription Setup
Docs powered by archbee 
TABLE OF CONTENTS
Introduction
What is a Gift Subscription?
Visual Flow
Gift Subscription order
Setup in OMS
Emails
Segment Events
Video
Email Template
Email Template code
FAQ/Troubleshooting