Forum und email

SAMMessage->body

(No version information available, might be only in CVS)

SAMMessage->body — メッセージの本文

説明

SAMMessage
string$nody;

"body" プロパティには、メッセージの本文が含まれます。 常に設定されているとは限りません。

Example#1 メッセージ本文へのテキスト文字列の設定

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

?>