Why Personalization?
Engaging people on a personal level is a great way to build trust in your brand. When you send emails with personalized content, people are more likely to interact with you.
While 75% of consumers want a personalized digital experience (Yieldify), 41% of shoppers say the information they get from retailers seems like mass marketing (Periscope). Lack of relevant content generates an average 66% lower likelihood of purchase (CMO by Adobe).
Personalization is more than a marketing tactic, it drives strategy and shapes your brand. The data you collect in Drip is key to using personalization. Data used for personalization in Drip:
The more options for personalization, the better. In Drip, personalization goes beyond using people’s first names in an email (but you can do that too).
Take a moment to think through the information you’re collecting about the people on your list. Here are some useful data points for personalization:
- Phone number
- Address
- City
- State
- Product tags
- Order history
Personalize Your Email Subject Line
Greet people on your list by their first name in the email subject to grab their attention and set a warmer tone. The person reading it will be more receptive to your messaging and feel more comfortable with the interaction.
To personalize your greeting, use the following Liquid code in the subject line of your email:
{{ subscriber.first_name }}
That code tells Drip to display the first name of each individual person reading your email. If you don’t have the first names of everyone on your list, add a default to your shortcode:
{{ subscriber.first_name | default: "there" }}
Use Logic to Show and Hide Content
Leverage Liquid code logic to create email content tailored for each person based on tags or custom fields. The Liquid code below shows blocks of text only if the reader has a given tag:
{% if subscriber.tags contains “Exfoliation Soap” %}
Only people with the tag “Exfoliation Soap” will see this text.
{% elsif subscriber.tags contains “Moisturizing Soap” %}
Only people with the tag “Moisturizing Soap” will see this text.
{% elsif subscriber.tags contains “Scented Soap” %}
Only people with the tag “Scented Soap” will see this text.
{% endif %}
Add Personalized Content Blocks
Give a great customer experience by showing people that you know them with Drip’s dynamic content blocks. Make shopping more relevant than ever with Cart Abandonment, Top Selling Products, and Discounts in Drip.
Cart Abandonment
Send personalized emails with the exact items a customer left in the cart with the Cart Abandonment content block in any Workflow email. In the visual email builder, select Cart Abandonment to insert the block into your email.
For the Cart Abandonment emails to send, the Workflow needs to be triggered by the necessary cart event depending on your Order Management System.
Top Selling Products
Create a sense of urgency and utilize your store data with the Top Selling Products content block in any Workflow, Email Series, or Single Email Campaign email. In the visual email builder, select Top Selling Products to insert the block into your email.
Dynamic Discounts
Increase brand loyalty with the Discounts content block in any Rule or Workflow email. In the visual email builder, select Discounts to insert the block into your email.
Preview Your Personalization
Always preview your emails before you send them out. This allows you to troubleshoot and fix errors before it’s too late. To preview an email as a specific person in a Single Email Campaign or Email Series email they must be added as a recipient. To preview an email as a specific person in a Workflow, they must be active in the Workflow.
Use the Preview feature in any Email Series, Single Email Campaign, or Workflow email to check your personalization:
- Click Preview
- Click Preview as
- Select a person to preview as
- The email populates with the selected person's data
In order for personalization Liquid shortcode to render in a test email, you must first select a person under the Preview as drop-down before using the Send a test feature.