Html Template
Creates a dynamic HTML template
Common Properties
- Name - The custom name of the node.
- Color - The custom color of the node.
- Delay Before (sec) - Waits in seconds before executing the node.
- Delay After (sec) - Waits in seconds after executing node.
- Continue On Error - Automation will continue regardless of any error. The default value is false.
info
if ContinueOnError property is true, no error is caught when the project is executed even if Catch node is used.
Output
- Output - The rendered output of the HTML
Example HTML
<html>
<head>
<title>Title</title>
</head>
<body>
{{content}}
</body>
</html>
In the HTML template example above, the {{content}}
is replaced by the value of msg.content
.