それはバグです。
引数をどのように渡しても、名前を指定できないだけで、同じ問題に直面しています。
そしてJoomlaで!ソースコード /libraries/joomla/mail/mail.php の 167 行目から、doc コメントには次のように記載されています。
/**
* Add recipients to the email
*
* @param mixed $recipient Either a string or array of strings [email address(es)]
* @param mixed $name Either a string or array of strings [name(s)]
*
* @return JMail Returns this object for chaining.
*
* @since 11.1
*/
ただし、変数 $nameは関数内で使用しないでください。
public function addRecipient($recipient, $name = '')
{
// If the recipient is an array, 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);
}
return $this;
}