API15:JMail/setBody
From Joomla! Documentation
Description
Set the E-Mail body
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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
function setBody($content)
{
/*
* Filter the Body
* TODO: Check for XSS
*/
$this->Body = JMailHelper::cleanText( $content );
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples