Hi @sumansatija4
To send email notifications to Outlook users at every step of a workflow, you can follow these steps:
1. Create a custom step in your workflow model: In your workflow model, you can add a custom step that will trigger the email notification. This step will be responsible for sending the email to the Outlook users.
2. Configure the custom step to send email: In the custom step, you will need to configure the logic to send the email. This can be done by using the SMTP configurations and email templates that you have already set up. You can use the SMTP server settings provided by your email service provider and create email templates with placeholders for dynamic content.
3. Retrieve the list of workflow users: At each step of the workflow, you will need to retrieve the list of users who need to receive the email notification. This can be done by querying the workflow users associated with the current step.
4. Generate the email content: Once you have the list of users, you can generate the email content by populating the email template with the relevant information. This can include details about the workflow step, the document being approved, and any other relevant information.
5. Send the email: Finally, you can use the SMTP configurations to send the email to the Outlook users. You can use the email addresses of the workflow users as recipients and include the generated email content as the body of the email.
