Send Message

This block displays a message on the caller side.

Properties

Values

Description

From

String

Address of the sender. The default is System.

Note:

  • This value must not contain the following characters: dollar ($), percent (%), less than (<), more than (>), open bracket ([), closed bracket (]). The system removes these symbols from this property.
  • It can contain all other symbols including UNICODE symbols.
  • It can be an empty string.

Message Text

String

The message text.

Note:

  • The value must not be an empty string.
  • If the value is empty, the block is skipped and the next block in the script is executed.

To embed variables into this property, surround the variable's name with percent (%) characters. To display a percent character in the body, use two percent characters together (%%).

For example, if you have a variable called average, use a string like this:

The class average for the last test was %average% %%.

The message will then contain something like:

The class average for the last test was 85%.

See How to use variables.