8 posts tagged with "Email"
send-email
The send-email action sends an email. It belongs to the email category within the external area.
Action Syntax
send-email
This action takes no parameters and is used as a bare command.
Return Value
This function returns a
$result = send-email
Valid sizes
Examples
// Basic Usage
send-email
Usage Guide
Before using send-email, you must configure the email using these actions:
set-email-bcc
The set-email-bcc action sets the email bcc field. It belongs to the email category within the external area.
Action Syntax
set-email-bcc "text"
set-email-bcc $variable
Valid sizes
Examples
// Basic Usage
set-email-bcc "bcc"
// Using Variables
// Display dynamic content from variables
set-email-bcc $bcc
set-email-body
The set-email-body action sets the email body field. It belongs to the email category within the external area.
Action Syntax
set-email-body "text"
set-email-body blk
set-email-body $variable
Valid sizes
Examples
// Basic Usage
set-email-body "body"
// Using Variables
// Display dynamic content from variables
set-email-body $body
set-email-cc
The set-email-cc action sets the email cc field. It belongs to the email category within the external area.
Action Syntax
set-email-cc "text"
set-email-cc $variable
Valid sizes
Examples
// Basic Usage
set-email-cc "cc"
// Using Variables
// Display dynamic content from variables
set-email-cc $cc
set-email-from
The set-email-from action sets the email from field. It belongs to the email category within the external area.
Action Syntax
set-email-from "text"
set-email-from $variable
Valid sizes
Examples
// Basic Usage
set-email-from "from"
// Using Variables
// Display dynamic content from variables
set-email-from $from
set-email-service
The set-email-service action sets the email service the app will use. It belongs to the email category within the external area.
Action Syntax
set-email-service rhappsody
set-email-service resend
Valid sizes
Examples
// Basic Usage
set-email-service rhappsody
set-email-subject
The set-email-subject action sets the email subject field. It belongs to the email category within the external area.
Action Syntax
set-email-subject "text"
set-email-subject $variable
Valid sizes
Examples
// Basic Usage
set-email-subject "sub"
// Using Variables
// Display dynamic content from variables
set-email-subject $subject
set-email-to
The set-email-to action sets the email to field. It belongs to the email category within the external area.
Action Syntax
set-email-to "text"
set-email-to $variable
Valid sizes
Examples
// Basic Usage
set-email-to "to"
// Using Variables
// Display dynamic content from variables
set-email-to $to