API15:JMail/addRecipient
From Joomla! Documentation
Description
Add recipients to the email
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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);
}
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples