API16

API16:JMail/setBody

From Joomla! Documentation

Revision as of 01:53, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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