Skip to main content

Vendor Email Outreach Workflow

This laboratory focuses on creating a vendor email outreach using Loop (New) and a Multi-step function.

Steps

The following steps focus on developing a Retool Workflow using the new Loop (New) and Multi-step function feature to perform vendor outreach with data stored in Retool DB. The workflow will use a vendor database and send appropriately formated email to each to confirm contact information.

Prerequesites

This example requires that you perform the following before you proceed:

  • Enable the Beta feature flag under: Settings > Beta > Enables Multi-step functions in workflows.

Create a Retool account and login

Create a Retool account and login to your account as shown below.

Setup of Vendor Database

The vendor database that will be used for this example is shown below and can be downloaded.

Using the following common separate value (CSV) files, the schema can be identified along with sample data into Retool table(s). In this step of the laboratory, a comma separated value file will be used to populate a Retool Database creating a single table. The following files need to be downloaded to your computer, in order to perform the following steps.

Once the file is downloaded, edit the CSV file, vendor.csv to modify the vendor_contact / email address, criley+xxx@retool.com to your email.

Next we can create tables in the database:

  • In the Retool Home Screen, select Database.
  • In Retool Database, select Import CSV > Into a new table.
  • Select file vendor.csv.
  • Change the CSV Column existing from text to bool.
CSV import
  • Select Create table and the table will update as shown in the following figure.
Vendor database table
  • Update the email values to your email such as tom+user1@gmail.com, tom+user2@gmail.com.

The following table provides an overview of the columns in this table, which is important to understand prior to building the workflow.

ColumnDescriptionValue
idprimary keyNumber (int4)
nameVendor nameText
street_addressStreet address for vendorText
cityCity for vendorText
stateState for vendorText
phonePhone number for vendorText
emailEmail for vendorText
existingExisting or new vendorBoolean

Vendor Workflow with Loop (New)

The new Loop block in Workflows provides additional capabilities for processing work in parallel, sequential or batch. Create a workflow by select Workflows > Create > Workflow.

startTrigger Block

Once the workflow is created, delete the Code Block by selecting ... > Delete in the upper-right hand corner of the block. This will leave the startTrigger Block.

Workflow Start Trigger

getVendorList Block

The getVendorList Block will perform a SQL query to the Vendor database to retrieve the list of vendors.

  • Select the circle on the startTrigger block and select Resource.
  • Edit the Resource block name to getVendorList.
  • Select the resource type as Retool Database.
  • Enter the following SQL into the SQL window:
SELECT * FROM vendors;

The following image shows the completed block.

getVendorList Block
  • Select the play symbol to confirm the query loads and returns results as shown below.
getVendorList Results Block
  • The following image shows the updated workflow with startTrigger and getVendorList blocks connected after completing configuration.
startTrigger and getVendorList Blocks

loopOnVendors Block

The next step is to create a Loop Block to process the results of the vendor query.

  • Select the circle on the getVendorList block and add a Loop (New) Block and rename to loopOnVendors.
  • Specify the Loop input as getVendorsList, Execution mode as Sequential and Loop runner as Create multi-step loop.
loopOnVendors Block
  • This will open up the multi-step function editor. Edit the name of the function from function1 to sendVendorEmail.
Function
  • Once the function has been renamed, the main workflow and loop block will appear as follows:
Loop with Function

sendVendorEmail Multi-step function

Multi-step functions provide a new way to create functions that are comprised of multiple blocks similar to a workflow and when combined with a loop, you are able to develop much more complex logic. The following function demonstrates passing in parameters, performing a conditional check with different email notifications.

params Block

The params block is created by default for a function / multi-step function and is where we can identify input parameters. Enter the following parameters as input into the function, email, name, street, city, state, phone, existing. The updated params block will appear as the following.

Input parameters

checkVendorType Block

The checkVendorType block performs a check to see if the existing parameter is true or false and directs the flow based on that value. Select the circle on the params block and specify Add block > Filter. In the If section specify the value params.existing === true as shown below.

checkVendorType Block

sendExistingVendorEmail

The sendExistingVendorEmail block sends a formatted email for existing vendors to double check existing contact details.

sendExistingVendorEmail Block

sendNewVendorEmail

The sendNewVendorEmail block sends a formatted email for new vendors to double check the recently entered contact details.

sendNewVendorEmail Block

The completed workflow is displayed below with params, checkVendorType, sendExistingVendorEmail and sendNewVendorEmail blocks.

Completed multi-step function

Results

Once the workflow is completed, select Run to see it process the database entries and send three separate emails. The following image shows the execution as it appears for a multi-step function.

Run History for single Workflow

What is of importance here is the multi-step function within a loop will display as Iteration 0, Iteration 1 etc. Within each iteration are the individual steps that the multi-step function executed. Notice that depending on the result in the Branch block, either the sendExistingVendorEmail or sendNewVendorEmail is displayed. Below is the email sent by the sendNewVendorEmail block.

New Vendor Email

Completed Examples

You can import the following examples and compare with what you have built.

Video Walkthrough

The following video walks through the development process.