API15:JMail/setSender
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 sender
Syntax
setSender($from)
| Parameter Name | Default Value | Description |
|---|---|---|
| $from | $from E-Mail address and Name of sender |
Returns
void
Defined in
libraries/joomla/mail/mail.php
Importing
jimport( 'joomla.mail.mail' );
Source Body
function setSender($from) { // If $from is an array we assume it has an address and a name if (is_array($from)) { $this->From = JMailHelper::cleanLine( $from[0] ); $this->FromName = JMailHelper::cleanLine( $from[1] ); // If it is a string we assume it is just the address } elseif (is_string($from)) { $this->From = JMailHelper::cleanLine( $from ); // If it is neither, we throw a warning } else { JError::raiseWarning( 0, "JMail:: Invalid E-Mail Sender: $from", "JMail::setSender($from)"); } }
[Edit See Also] SeeAlso:JMail/setSender
Examples
<CodeExamplesForm />
