How do I add Supertime details to my customer order confirmation email?

Do you want to include Supertime details in your customer's order confirmation emails? Supertime supports that!

You can show the selected date, time and delivery method for a customer's order collected through Supertime using Shopify's order attribute tags. Paste the following snippets into your customer notification templates in your Notifications settings:

  • Date (using localized date formats) : {{ attributes["Supertime Delivery Date"] | date: format: "basic" }}
  • Date (DD/MM/YY, using custom date formats): {{ attributes["Supertime Delivery Date"] | date: '%d/%m/%Y' }}
  • Date (MM/DD/YY, using custom date formats): {{ attributes["Supertime Delivery Date"] | date: '%m/%d/%Y' }}
  • Time (default - 24 hour time): {{ attributes["Supertime Timeslot"] }}
  • Time (12 hour time or custom time formats):{{ attributes["Supertime Timeslot"] | slice: 0,5 | time_tag: '%-I:%M %p' }} - {{ attributes["Supertime Timeslot"] | slice: 8,12 | time_tag: '%-I:%M %p' }}
  • Delivery Method: {{ attributes["Supertime Delivery Method"] }}

For more details on how to customize email notifications, review this article.

Steps:

  1. Visit your Notification Settings.
  2. Click on the Order confirmation email template.

  3. Copy and paste directly into your template, or select your own snippets from above within your capture_body block (e.g. above endcapture in your email):
    <p>Date: {{ attributes["Supertime Delivery Date"] | date: format: "basic" }}</p> 
    <p>Time: {{ attributes["Supertime Timeslot"] | slice: 0,5 | time_tag: '%-I:%M %p' }}-{{ attributes["Supertime Timeslot"] | slice: 8,12 | time_tag: '%-I:%M %p' }}</p> 
    <p>Method: {{ attributes["Supertime Delivery Method"] }}</p>
    	

    For example, in your order confirmation email, you'll want this code just within your capture_body block:

  4. Click the Save button.
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.