©
                    本文档使用
                    php中文网手册 发布
                
(PECL sam >= 0.1.0)
SAMMessage::body — The body of the message.
The "body" property contains the actual body of the message. It may not always be set.
Example #1 Setting a text string into the body of a message
  <?php
$msg  = new  SAMMessage ();
 $msg -> body  =  'This is a simple message' ;
 ?>