Sending a System Message
sendSystemMessage
A system message can be sent from Custom Logic using the following format:
bool sendSystemMessage(
string $subject,
string $body,
int $recipient,
string $identifier
)
Parameters
$subject The subject of the message.
$body The body Content of the message.
$recipient The CONTACTS RECID that the message will be sent to.
$identifier A descriptive identifier that will be included at the end of the message.
Return Values
Returns TRUE or FALSE.
Example:
$result = $this->sendSystemMessage(
'Test Message',
'This is a System Message generated from custom logic',
123,
'Example Message'
);
Output:
, multiple selections available,
Related content
(2024.2) Sending a System Message
(2024.2) Sending a System Message
More like this
(v1) Service Desk Thread Received (Response)
(v1) Service Desk Thread Received (Response)
More like this
(v1) .Service Desk Thread Received (Response) v2019.3
(v1) .Service Desk Thread Received (Response) v2019.3
More like this
Calling API Logic
Calling API Logic
More like this
(v1) ServiceDesk New Inquiry Received
(v1) ServiceDesk New Inquiry Received
More like this
(v1) .ServiceDesk Thread Received (CSR) v2.1.4.7
(v1) .ServiceDesk Thread Received (CSR) v2.1.4.7
More like this