# Email V1: Usage example (Deprecated)

Let's say you can't seem to add values to the email template when using the ***Email V1*** component.

First of all, it's necessary to understand that the email template accepts the use of the input JSON attributes in the **${atrribute}** format. Therefore, the "attribute" must be inside "params", resulting in the following input JSON:

```
{
    "attribute": "valueOfAttribute"
}
```

Afterwards, this is the transformation that must occur:

```
{
    "params": {
        "attribute": "valueOfAttribute"
    }
}
```

This would be the email template preview:

***Hello ${attribute}!***

It's also possible to add HTML tag to the template:

```
<div>Hello ${atrribute}!</div>
```

That way, the variable replaced in the sent email would be seen like this:\
\&#xNAN;***Hello valueOfAttribute!***<br>

Click [here](/documentation/connectors-and-triggers/connectors/web-protocols/email-v1.md) to read the full article about the ***Email V1*** component.


---

# 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.digibee.com/documentation/connectors-and-triggers/connectors/web-protocols/email-v1/email-v1-usage-example.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.
