SAMMessage {
__construct(mixed body);
}
Creates a new SAMMessage
object optionally specifying a message body.
Parameters
- body
The optional body for the message.
Examples
<?php
$msg = new SAMMessage();
?>
<?php
$msg = new SAMMessage('This is a simple text message');
?>