(PECL sam >= 0.1.0)
The body of the message.
string $SAMMessage->body;
The "body" property contains the actual body of the message. It may not always be set.
Examples:
Setting a text string into the body of a message
1 2 3 4 5 | <?php $msg = new SAMMessage(); $msg ->body = 'This is a simple message' ; ?> |
See also:
Please login to continue.