Templates and scripts
Last updated
Was this helpful?
Last updated
Was this helpful?
Templates and scripts are similar features in Rewst, though each is intended for a different purpose. Once created, they're separated by type into two sections in the platform for ease of organization and sorting. Both can be referenced in workflows.
Templates are used to create a standardized set of text used in several places in Rewst. For example, if you want to create a ticket and always use the same HTML for the ticket description, you would create a template. In the input, you would reference the template instead of having to type that same text each time.
To access templates, navigate to Automations > Templates in the left side menu of your Rewst platform.
Write templates in either Markdown or HTML language.
Click + Create.
Fill in the relevant fields with the information for your template.
Name
Description
Tags
Select the language you want to write your template in from the Language drop-down selector.
Click into your Editor panel on the left side of the screen to begin writing. View your progress in the Preview panel.
Scroll down and click Submit when finished.
While templates are written in HTML or Markdown, they can accept small elements of Jinja to set up the use of templates elsewhere in Rewst. Templates allow for context variables to be set within them, which can then be referenced in workflows to allow the eventual sent message to populate with dynamic information.
In the example below, you're sending an e-mail to a new user that has been created.
In the input for the Send Mail
action, you would enter {{ template("<template-id>")}}
into the action's Message field instead of typing out the intended message manually. This would pull your pre-written template into the body of the email when it is sent.
The template ID can be taken from the URL, when editing the template. As an example, let's look at the URL below.
The part of the URL underlined in yellow is the template ID. For this particular ID, your Jinja would read as {{ template("768f5d45-5fe7-4c1f-b2c1-932dcbdcb1d7") }}
.
Scripts in Rewst enable you to write scripts in a straightforward and accessible manner compared to traditional programming languages. Scripting tasks can range from batch processes on a local computer to generating dynamic web pages on a web server. Scripts can be written, edited, and executed more quickly and easily than software programs.
To access scripts, navigate to Automations > Scripts in the left side menu of your Rewst platform.
Write Rewst scripts in any of the following languages: PowerShell, Python, YALM, Jinja.
Click + Create.
Fill in the relevant fields with the information for your script.
Name
Description
Tags
Select the language you want to write your script in from the Language drop-down selector.
Click into your Text panel to begin writing.
Scroll down and click Submit when finished.