JavaScript Editor Javascript debugger     Website design 


SAMMessage->body

The body of the message. ()

SAMMessage {
  string nody ;
}

The "body" property contains the actual body of the message. It may not always be set.

Examples

Example 2134. Setting a text string into the body of a message

<?php
$msg
= new SAMMessage();
$msg->body = 'This is a simple message';

?>