Skip to main content

What does this node do?

Fills a template with data using variable placeholders.

Configuration

template
string
required
Template with placeholders.
Hello {{name}},

Your order #{{order_id}} is confirmed.
Total: ${{total}}
data
object
required
Data to merge into template.

Output

{
  "result": "Hello John,\n\nYour order #12345 is confirmed.\nTotal: $99.99"
}

Use cases

  • Email templates
  • Report generation
  • Document creation