> For the complete documentation index, see [llms.txt](https://docs.digibee.com/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digibee.com/documentation/connectors-and-triggers/pt-br/connectors/web-protocols/email-v1/email-v1-usage-example.md).

# Email V1: Exemplos de uso (Descontinuado)

Digamos que você não esteja conseguindo adicionar valores ao *template* de e-mail quando utiliza o componente ***Email V1***.

Primeiramente, é preciso entender que o *template* de e-mail aceita a utilização dos atributos do JSON de entrada no formato **${atributo}**. Logo, o "atributo" deve estar dentro de "params", resultando no seguinte JSON de entrada:

```
{   
    "atributo": "valorDoAtributo"
}
```

Em seguida, deve ocorrer a seguinte transformação:

```
{   
    "params": {      
        "atributo": "valorDoAtributo"   
    }
}
```

Esta seria a visualização no *template* do e-mail:

***Olá ${atributo}!***

Também é possível adicionar *tags* HTML ao *template*:

```
   <div>Olá ${atributo}!</div>
```

Dessa forma, a variável substituída no e-mail enviado seria visualizada da seguinte maneira:\
\&#xNAN;***Olá valorDoAtributo!***<br>

Clique [aqui](/documentation/connectors-and-triggers/pt-br/connectors/web-protocols/email-v1.md) para ler o artigo completo sobre o componente ***Email V1***.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.digibee.com/documentation/connectors-and-triggers/pt-br/connectors/web-protocols/email-v1/email-v1-usage-example.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
