API15:JMail/setSubject
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 subject
Syntax
setSubject($subject)
| Parameter Name | Default Value | Description |
|---|---|---|
| $subject | $subject Subject of the e-mail |
Returns
void
Defined in
libraries/joomla/mail/mail.php
Importing
jimport( 'joomla.mail.mail' );
Source Body
function setSubject($subject) { $this->Subject = JMailHelper::cleanLine( $subject ); }
[Edit See Also] SeeAlso:JMail/setSubject
Examples
<CodeExamplesForm />
