API15:JMail/addRecipient
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
Add recipients to the email
Description:JMail/addRecipient
Syntax
addRecipient($recipient)
| Parameter Name | Default Value | Description |
|---|---|---|
| $recipient | $recipient Either a string or array of strings [e-mail address(es)] |
Returns
void
Defined in
libraries/joomla/mail/mail.php
Importing
jimport( 'joomla.mail.mail' );
Source Body
function addRecipient($recipient) { // If the recipient is an aray, add each recipient... otherwise just add the one if (is_array($recipient)) { foreach ($recipient as $to) { $to = JMailHelper::cleanLine( $to ); $this->AddAddress($to); } } else { $recipient = JMailHelper::cleanLine( $recipient ); $this->AddAddress($recipient); } }
[Edit See Also] SeeAlso:JMail/addRecipient
Examples
<CodeExamplesForm />
