Inbox
9 posts tagged with "Inbox"
.inbox-message
The .inbox-message action a single inbox message. It belongs to the inbox category within the external area.
Action Syntax
.inbox-message $variable
Valid sizes
Examples
// Basic Usage
.inbox-message $Iitem
.inbox-message-input
The .inbox-message-input action full inbox message input with from subject and body. It belongs to the inbox category within the external area.
Action Syntax
.inbox-message-input $variable
Valid sizes
Examples
// Basic Usage
.inbox-message-input $var
clear-inbox
The clear-inbox action clears the inbox of messages. It belongs to the inbox category within the external area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = clear-inbox
Valid sizes
Examples
// Basic Usage
clear-inbox
delete-inbox-message
The delete-inbox-message action deletes an app inbox message. It belongs to the inbox category within the external area.
Action Syntax
delete-inbox-message 123
delete-inbox-message $variable
Return Value
This function returns a
$result = delete-inbox-message
Valid sizes
Examples
// Basic Usage
$response = delete-inbox-message 10
list-inbox
The list-inbox action lists the current apps inbox contents. It belongs to the inbox category within the external area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = list-inbox
Valid sizes
Examples
// Basic Usage
list-inbox
send-to-inbox
The send-to-inbox action sends message to inbox. It belongs to the inbox category within the external area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = send-to-inbox
Valid sizes
Examples
// Basic Usage
send-to-inbox
set-message-body
The set-message-body action sets the message body field. It belongs to the inbox category within the external area.
Action Syntax
set-message-body "text"
set-message-body $variable
Valid sizes
Examples
// Basic Usage
set-message-body "body"
// Using Variables
// Display dynamic content from variables
set-message-body $body
set-message-from
The set-message-from action sets the message from field. It belongs to the inbox category within the external area.
Action Syntax
set-message-from "text"
set-message-from $variable
Valid sizes
Examples
// Basic Usage
set-message-from "from"
// Using Variables
// Display dynamic content from variables
set-message-from $from
set-message-subject
The set-message-subject action sets the message subject field. It belongs to the inbox category within the external area.
Action Syntax
set-message-subject "text"
set-message-subject $variable
Valid sizes
Examples
// Basic Usage
set-message-subject "sub"
// Using Variables
// Display dynamic content from variables
set-message-subject $subject