GoLang SAMMessage::body

request it (331)
GoLang replacement for PHP's SAMMessage::body [edit | history]



Do you know a GoLang replacement for PHP's SAMMessage::body? Write it!

PHP SAMMessage::body

PHP original manual for SAMMessage::body [ show | php.net ]

SAMMessage::body

(PECL sam >= 0.1.0)

SAMMessage::body The body of the message

Description

string $SAMMessage->body;

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

Examples

Example #1 Setting a text string into the body of a message

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

?>