API16:JMail/setBody
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Set the E-Mail body
Syntax
setBody($content)
| Parameter Name | Default Value | Description |
|---|---|---|
| $content | $content Body of the e-mail |
Returns
void
Defined in
libraries/joomla/mail/mail.php
Importing
jimport( 'joomla.mail.mail' );
Source Body
public function setBody($content) { /* * Filter the Body * TODO: Check for XSS */ $this->Body = JMailHelper::cleanText($content); }
[Edit See Also] SeeAlso:JMail/setBody
Examples
<CodeExamplesForm />
