> ## Documentation Index
> Fetch the complete documentation index at: https://support.getskara.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Inserting Text Functions in an Email Template

You can insert text functions in the Email Template to append, prepend, uppercase, downcase, concat, and remove texts from a particular field. Topics covered:

* [Append](#append)
* [Prepend](#prepend)
* [Uppercase](#uppercase)
* [Downcase](#downcase)

### Append

This function appends the text mentioned by you along with the value of the field.

* **Input:**

```highlight theme={null}
| Append Example :&#123;&#123;Contact.name | append:", Hope you are doing well"!&#125;&#125; |
```

<img src="https://mintcdn.com/salesmate/7ijlFeFyTz2HGn_f/emails/managing-email-templates/images/Screenshot-2023-06-05-at-3.29.44-PM.png?fit=max&auto=format&n=7ijlFeFyTz2HGn_f&q=85&s=3b7ea12f10de0c3e216756342f09a340" alt="Screenshot" width="2026" height="1340" data-path="emails/managing-email-templates/images/Screenshot-2023-06-05-at-3.29.44-PM.png" />

* **Output:**

```text highlighter-rouge theme={null}
Append Example: &#123;Lina Westminster, Hope you are doing well!&#125;
```

<img src="https://mintcdn.com/salesmate/7ijlFeFyTz2HGn_f/emails/managing-email-templates/images/Screenshot-2023-06-05-at-3.31.02-PM.png?fit=max&auto=format&n=7ijlFeFyTz2HGn_f&q=85&s=97592f186dcca2f3481b9a7ce0457a8b" alt="Screenshot" width="2688" height="1352" data-path="emails/managing-email-templates/images/Screenshot-2023-06-05-at-3.31.02-PM.png" />

### Prepend

This function prepends the text mentioned by you along with the value of the field.

* **Input:**

```highlight theme={null}
| Prepend Example : &#123;&#123;Contact.name | prepend : "Hello"&#125;&#125; |

```

<img src="https://mintcdn.com/salesmate/7ijlFeFyTz2HGn_f/emails/managing-email-templates/images/Screenshot-2023-06-05-at-3.34.31-PM.png?fit=max&auto=format&n=7ijlFeFyTz2HGn_f&q=85&s=9e3b0003b53c982032774ec25d6629fc" alt="Screenshot" width="2026" height="1380" data-path="emails/managing-email-templates/images/Screenshot-2023-06-05-at-3.34.31-PM.png" />

* **Output:**

```highlight theme={null}
Prepend Example: Hello Lina Westminster
```

<img src="https://mintcdn.com/salesmate/7ijlFeFyTz2HGn_f/emails/managing-email-templates/images/Screenshot-2023-06-05-at-3.40.28-PM.png?fit=max&auto=format&n=7ijlFeFyTz2HGn_f&q=85&s=07d90d18437c863b656e75ce104fa6e7" alt="Screenshot" width="2686" height="1350" data-path="emails/managing-email-templates/images/Screenshot-2023-06-05-at-3.40.28-PM.png" />

### Uppercase

This function converts each character of the word in uppercase. Note: It has no effect on strings that are already all uppercase.

* **Input:**

```highlight theme={null}
| Uppercase : &#123;&#123;"Contact.name" | upcase&#125;&#125; |

```

<img src="https://mintcdn.com/salesmate/7ijlFeFyTz2HGn_f/emails/managing-email-templates/images/mceclip4-3.png?fit=max&auto=format&n=7ijlFeFyTz2HGn_f&q=85&s=39589fb380094dd328cf4b529ab33b92" alt="mceclip4.png" width="2251" height="1260" data-path="emails/managing-email-templates/images/mceclip4-3.png" />

* **Output:**

```highlight theme={null}
Uppercase: ABIE HANBY
```

<img src="https://mintcdn.com/salesmate/7ijlFeFyTz2HGn_f/emails/managing-email-templates/images/mceclip3-3.png?fit=max&auto=format&n=7ijlFeFyTz2HGn_f&q=85&s=9110be24bf75575e5562de25ca729777" alt="mceclip3.png" width="2599" height="1843" data-path="emails/managing-email-templates/images/mceclip3-3.png" />

### Downcase

This function converts each character of the word in lowercase.Note: It has no effect on words that are already all lowercase.

* **Input:**

```highlight theme={null}
| LowerCase: &#123;&#123;"Contact.name" | downcase&#125;&#125; |

```

<img src="https://mintcdn.com/salesmate/7ijlFeFyTz2HGn_f/emails/managing-email-templates/images/mceclip0-4.png?fit=max&auto=format&n=7ijlFeFyTz2HGn_f&q=85&s=153d3c8a86ebbaa10a37b978e0815a45" alt="mceclip0.png" width="2319" height="1262" data-path="emails/managing-email-templates/images/mceclip0-4.png" />

* **Output:**

```text highlighter-rouge theme={null}
LowerCase: abie hanby
```

<img src="https://mintcdn.com/salesmate/7ijlFeFyTz2HGn_f/emails/managing-email-templates/images/mceclip1-5.png?fit=max&auto=format&n=7ijlFeFyTz2HGn_f&q=85&s=139feab53fbedbcdcf62bbe4c58dde9b" alt="mceclip1.png" width="2601" height="1836" data-path="emails/managing-email-templates/images/mceclip1-5.png" />
