API16

API16:JMail/addRecipient

From Joomla! Documentation

Description

Add recipients to the email



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

public 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);
        }
}



Examples

Code Examples