# Using merge fields to personalize your emails

Merge fields allow you add in subscriber info into your email for a personalized experience. You can view a list of all available fields by clicking the respective tab anywhere you are adding email content.

![](https://3747798111-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FOLiZFb8QcPSjvrne1vkm%2Fuploads%2FD8yztKawnoanQAf4ohKy%2Fmerge-fields1.png?alt=media\&token=687a2e11-b7a0-4243-b491-f2a6c1c6b2ba)

Using the merge field is as simple as typing it in your email:

![](https://3747798111-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FOLiZFb8QcPSjvrne1vkm%2Fuploads%2FMlL7I6LjQBRHKU5i4lXm%2Fmerge-fields2.png?alt=media\&token=e28d9080-a1de-4453-bc56-83c630c8834d)

Mailblast uses  [liquid](http://shopify.github.io/liquid/basics/introduction/) to handle merge fields, so on top of inserting tags for users, you can set up additional filters and conditionals in your emails templates.

For example you can:

* Set a default value
  * Dear {{ first\_name | default: "customer" }}
* Capitalize only the first letter
  * Dear {{ first\_name | capitalize }}
* Get only the first word of first\_name (If your first and last names are not split)
  * {{ first\_name | split: " " | first }}

The full liquid reference is available [here](http://shopify.github.io/liquid/basics/introduction/).
