Text substitution
This is the most basic example. This is what your JSON data should contain :
Data
{
"firstname": "John",
"lastname": "Doe"
}
Template
Result
Hello {firstname} {lastname} !
➡️
Hello John Doe!
In your template, the tags between curly braces will be replaced by the data you provided
Last updated