# 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.

![](/files/x3uZ07C0W0TYC77WjNgA)

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

![](/files/rrIEf0mhPJbSrm4PLJuP)

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/).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.mailblast.io/using-mailblast/using-merge-fields-to-personalize-your-emails.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
