API16:JMail/setBody
From Joomla! Documentation
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);
}
Examples
Code Examples