Skip to main content

Message Actions

Requirement: create or supply an Email Client / access token before reading, deleting, or sending messages.

Email: Create Client

Connects to an email account so that subsequent email actions can operate on it.

Image

Image

ParameterDescription
UsernameMailbox user name (usually full e-mail).
PasswordPassword or app-specific token.
ServerSMTP host (e.g., smtp.gmail.com).
PortSMTP port (25, 465, 587…).
StartTLSToggle ON to upgrade the connection with STARTTLS.
Sender NameFriendly “From” name (optional).
Send from emailAlternate address when sending on behalf of a shared mailbox (optional).
OAuth2Switch to OAuth2 mode (ignored for Basic Auth).
No VerifySkip TLS certificate validation (not recommended).
UnencryptedForce plain (insecure) SMTP connection.
Save Client to VarVariable that will store the created client object.
ParameterDescription
UsernameAccount e-mail that will send messages.
Client IDApplication (client) ID from your Azure / Google project.
Authority URLOAuth authority (e.g., https://login.microsoftonline.com/common).
SecretClient secret value.
Save Client to VarVariable that will hold the OAuth2 SMTP client.

Email [IMAP]: Read Emails

Retrieves emails and exposes their content for further processing.

Image

ParameterDescription
Email Client VarIMAP client variable.
FolderMailbox folder to read from (e.g. INBOX).
LimitMaximum number of messages to fetch (0 = all).
Save Emails to VarVariable that will hold the retrieved e-mail list.

Email [IMAP]: Move To Folder

Moves selected emails to a target folder or label.

Image

ParameterDescription
Email Client VarIMAP client variable.
Source FolderCurrent folder of the e-mail.
FolderDestination folder.
Email UUIDUnique identifier (UID) of the message to move.

Email [IMAP]: Delete

Deletes selected emails or moves them to the trash.

Image

ParameterDescription
Email Client VarIMAP client variable holding the connection.
Source FolderFolder where the e-mail currently resides (e.g. INBOX).
Email UUIDUnique identifier (UID) of the message to delete.

Email [SMTP]: Send

Composes and sends an email with the specified recipients, subject, body, and attachments.

Image

ParameterDescription
Email Client VarVariable holding an SMTP client (Basic Auth or OAuth2).
RecipientsAddress list separated by semicolons.
SubjectMessage subject (static or variable).
ExpressionBody – literal text or expression concatenating variables.

Notifier [SMTP]: Add Message

Creates a reporting notification with specified text and type.

Image

ParameterDescription
MessageText to store in the notifier queue.
TypeSeverity: INFO, SUCCESS, WARNING, or ERROR.

Notifier [SMTP]: Send Report

Sends a report email of flow notifications to specified recipients.

Image

ParameterDescription
Email Client VarSMTP client instance used for sending the report.
RecipientsOne or more e-mail addresses separated by semicolons.
Report SubjectSubject line of the auto-generated report message.

Send Slack Message

Posts a text message to a specified Slack channel or user.

Image

ParameterDescription
Slack TokenBot/user OAuth token with chat:write scope
Channel IDTarget channel (e.g., C0123456789)
MessageText content to post

Send Teams Message

Sends a message to a Microsoft Teams channel or chat.

Image

ParameterDescription
Webhook URLIncoming-webhook URL of the Teams channel.
MessageJSON or plain-text content to post.