For the complete documentation index, see llms.txt. This page is also available as Markdown.

email

Deprecated. Use email tag instead.

email sends email notification. It accepts JSON object with all parameters required to send an email.

{% json email_params %}
   {
        "to": "test@email.com",
        "subject": "Dummy",
        "replyTo": "test@email.com",
        "html": "<h2> Hello! </h2>",
        "attachments": [
          {
            "filename": "test.csv",
            "content": "name,last_name \n john,smith"
          }
        ]
    }
{% endjson %}


{{ email_params | email }}

Your email body can contain html. Also it is possible to send attachments of max size 10 MB.

Last updated