What can I personalize in my messages?
Create a more engaging experience for your readers by using personalization in your emails. Personalization fields allow you to include information specific to individual subscribers in your messages to them.
In this article, we will how to add personalization snippets to your message and what personalization options are available.
Note: All personalization variables are case sensitive. Make sure that any variables added to your message match those in this article exactly.
Step By Step Instructions
- When editing a message, you can insert a personalization field by first selecting the area in which you'd like to create the field.
- Next, click the Edit block and in the toolbar that appears, click the "Personalize" button.
Clicking the "Personalize" button will provide a drop-down menu where you can select which personalization value you would like to add to your message. You can select different categories to find more information.
Now, the personalization will be added to your message.
You can include the different options for personalization:
Subscriber Information
This information is pulled from the subscriber's initial signup, and is mostly information that they provided directly to you.
Full Name
First Name
Last Name
Email Address
Thank you page
Ad Tracking
IP Address
Signup URL
Signup Date
Custom Field Data
Information from Your Account
This information is set on your List Settings page.
Signature
Contact Address
Unsubscribe Link
Archived Web Version
Date
Other Text Snippets
Subscriber Location
This information is generated from your subscriber's IP address.
Country
Region
City
Postal Code
Latitude
Longitude
DMA Code
Name Variables
The AWeber system can correct the capitalization of most subscribers' names. So if someone enters their name as steve, AWeber can display their name in messages as Steve.
Field Name | Variable | Displays |
Full Name | {{ subscriber.name }} | Subscriber's full name |
Full Name | {{ subscriber.name | title }} | Full name, corrects capitalization for both first and last names |
First Name | {{ subscriber.first_name }} | Subscriber's first name |
First Name | {{ subscriber.first_name | capitalize }} | First name, corrects capitalization |
Last Name | {{ subscriber.last_name }} | Subscriber's last name |
Last Name | {{ subscriber.last_name | capitalize }} | Last name, corrects capitalization |
Date Variables
AWeber can display the current date, as well as the date the subscriber opted in to your list in several formats. Additional date formatting options are available.
For the current date:
Desired Date Format | Use | Display |
Long Date | {{ now | date_format('MMMM D, YYYY') }} | January 3, 2015 |
Abbreviated | {{ now | date_format('MMM D, YYYY') }} | Jan 3, 2015 |
Short w/Slash | {{ now | date_format('M/D/YYYY') }} | 1/3/2015 |
Short w/Dash | {{ now | date_format('M-D-YYYY') }} | 1-3-2015 |
European w/Slash | {{ now | date_format('D/M/YYYY') }} | 3/1/2015 |
European w/Dash | {{ now | date_format('D-M-YYYY') }} | 3-1-2015 |
Day of the Week | {{ now | date_format('dddd') }} | Wednesday |
For the date a subscriber signed up to your list:
Desired Date Format | Use | Display |
Long Date | {{ subscriber.signup.date | date_format('MMMM D, YYYY') }} | January 3, 2015 |
Abbreviated | {{ subscriber.signup.date | date_format('MMM D, YYYY') }} | Jan 3, 2015 |
Short w/Slash | {{ subscriber.signup.date | date_format('M/D/YYYY') }} | 1/3/2015 |
Short w/Dash | {{ subscriber.signup.date | date_format('M-D-YYYY') }} | 1-3-2015 |
European w/Slash | {{ subscriber.signup.date | date_format('D/M/YYYY') }} | 3/1/2015 |
European w/Dash | {{ subscriber.signup.date | date_format('D-M-YYYY') }} | 3-1-2015 |
Day of the Week | {{ subscriber.signup.date | date_format('dddd') }} | Wednesday |
Geographic Variables
When subscribers opt in to your list, AWeber captures their IP address. Based on this IP address, for most subscribers we can capture geographic information which you can use to personalize your messages.
This geographic data is based on the subscriber's IP address, which will not always match where they are physically located. It is an approximate measure, so please use it accordingly.
Field Name | Variable | Displays |
Country | {{ subscriber.signup.country }} | Country (where subscriber signed up from) |
Region | {{ subscriber.signup.region }} | Region (in the USA, this is State) |
City | {{ subscriber.signup.city }} | City |
Postal | {{ subscriber.signup.postal_code }} | Postal Code |
Latitude | {{ subscriber.signup.latitude }} | Latitude |
Longitude | {{ subscriber.signup.longitude }} | Longitude |
DMA Code | {{ subscriber.signup.dma_code }} | Direct Marketing Association code |
RSS Variables
These variables pull information from an RSS feed that you've set up. Using the Feed Element allows you to incorporate content from your blog, podcast, youtube channel and other content feeds without needing to use these variables; however, if you use RSS variables for your coded HTML message, the different RSS variables will display particular content from your RSS feed.
More detailed variables located when learning How can I use dynamic email content with a RSS feed?
Variable | Displays |
{{ feed.title }} | Title of Your Feed |
{{ feed.description }} | Description of Your Feed |
{{ feed.link }} | Link to Your Web Page |
{{entry.title}} | Title of Your Post |
{{ entry.published_at|date_format("MMMM d, YYYY") }} | Date of Your Post |
{{entry.description}} | Excerpt/Content From Post |
{{entry.content_html}} | Full Content From Post |
{{entry.link}} | Link to Full Post Online |
Custom and Global Fields
Variable | Displays |
{{ subscriber.custom_field['Name of custom field'] }} | Whatever information is stored in the variable name custom field |
{{ subscriber.custom_field['Name of custom field'] | title }} | Whatever information is stored in the variable name custom field, with the first letter capitalized in each word |
{{ list.global_field['field_name'] }} | Whatever information is stored in the variable name global field |
{{ list.global_field['field_name'] | title }} | Whatever information is stored in the variable name global field, with the first letter capitalized in each word |
Note: When using a Custom or Global Field variable make sure that the letter case matches exactly what you've entered into the list information. For example, if you create a custom field for Transaction ID the variable will need to be written as {{ subscriber.custom_field['Transaction ID'] }}.
Other Variables
Field Name | Variable | Displays |
{{ subscriber.email }} | Subscriber's email address | |
Ad Tracking | {{ subscriber.signup.source }} | Subscriber's ad tracking category |
Unsubscribe Link | {{ subscriber.unsubscribe_link }} | Unsubscribe link |
Subscription Source | {{ subscriber.signup.url }} | URL where subscriber signed up |
Add IP | {{ subscriber.signup.ip_address }} | IP address subscriber signed up from |
Signature | {{ list.signature }} | Your signature file |
Contact Address | {{ list.contact_address }} | Your postal contact address |
Archive URL | {{ message.archive_url }} | Link to the archived web version of your broadcast message |
Are there any other ways to personalize a message?
In addition to the variables above, you can add dynamic content to your messages. The personalization codes above are static, meaning each variable will only pull in one piece of subscriber data. With dynamic content, you can tailor your messages further by displaying specific content if certain conditions are met. For example, you can greet your subscribers using the {!firstname_fix} personalization, but if the subscriber didn't submit their first name, then that code won't pull in any information. Instead of using the personalization, you can add dynamic content to pull in another greeting for subscribers who didn't fill out the name field, like "Hello friend." Our articles below provide an overview of dynamic content, the variables that you can use, and how to use dynamic content to personalize your greetings.
- What is Dynamic Email Content?
- What variables can I use to create dynamic email content?
- How can I personalize email greetings with dynamic email content?
For a complete walkthrough on creating and sending a message from start to finish, see our how-to video and watch the message editor in action: