Email Notification Workflow
Read data from Excel and send email notification
Steps
| # | Activity | What it does |
|---|---|---|
| 1 | TableImport | Load the data file into a named table on the runner |
| 2 | SMTPEmail | Send notification email |
Workflow
importResult = TableImport("data", "./data.xlsx")
SMTPEmail("manager@example.com", emailBody="{{ 'Processed ' + importResult.totalRows + ' records' }}", emailSubject="Daily Report")