Skip to main content

Store Pickup and Delivery Email Options

here is a list of all the fields you can add to the email templates in shopify for your store pickup and delivery emails.

Updated over a week ago

You can include the following extra fields for store pickup and delivery in your email templates:

  • Pickup Location Company

  • Pickup Location Address Line 1

  • Pickup Location Address Line 2 (optional)

  • Pickup Location City

  • Pickup Location Region/State

  • Pickup Location Postal Code/Zip

  • Pickup Location Country

  • Pickup Date (formatted as: "%A, %-d %B %Y")

  • Pickup Time (formatted as: "%R")

For Local delivery, you can also include:

  • Delivery Date (formatted as: "%A, %-d %B %Y")

  • Delivery Time

These fields can be added using the corresponding template variables (e.g., {{ order.attributes.Pickup-Location-Company }}) or {{ attributes.Pickup-Location-Company }})in your confirmation email or SMS templates. Optional fields like Address Line 2 and Pickup/Delivery Date and Time should be wrapped in conditional statements to display only if present.

example here: For the full list you can check this site at shopify

<!-- Added Pickup Details RP Tech Support  --> 
{% if attributes.Checkout-Method == "pickup" %}
<div class="customer-info__item" valign="top" style="vertical-align:top;">
<h4>Pickup Address</h4>
<p>
{% if attributes.Pickup-Location-Company %}
{{ attributes.Pickup-Location-Company }} <br/>
{% endif %}
{% if attributes.Pickup-Location-Address-Line-1 %}
{{ attributes.Pickup-Location-Address-Line-1 }} <br/>
{% endif %}
{% if attributes.Pickup-Location-Address-Line-2 %}
{{ attributes.Pickup-Location-Address-Line-2 }} <br/>
{% endif %}
{% if attributes.Pickup-Location-City %}
{{ attributes.Pickup-Location-City }}
{% endif %}
{% if attributes.Pickup-Location-Region %}
{{ attributes.Pickup-Location-Region }}
{% endif %}
{% if attributes.Pickup-Location-Postal-Code %}
{{ attributes.Pickup-Location-Postal-Code }}<br/>
{% endif %}
{% if attributes.Pickup-Location-Country %}
{{ attributes.Pickup-Location-Country }}<br/>
{% endif %}
{% if attributes.Pickup-Date %}
<br />Pickup Date:<br/>
{{ attributes.Pickup-Date | date: "%A, %-d %B %Y" }}<br />
{% endif %}
{% if attributes.Pickup-Time %}
<br/>Pickup Time:<br/>
{{ attributes.Pickup-Time | date: "%R" }}<br />
{% endif %}
</p>
</div>
{% endif %}
<!-- End Added Pickup Details --->
Did this answer your question?