Skip to main content

Email Notification Workflow

Read data from Excel and send email notification

Steps

#ActivityWhat it does
1TableImportLoad the data file into a named table on the runner
2SMTPEmailSend notification email

Workflow

importResult = TableImport("data", "./data.xlsx")
SMTPEmail("manager@example.com", emailBody="{{ 'Processed ' + importResult.totalRows + ' records' }}", emailSubject="Daily Report")