PHPMailer AddAddress()

前端 未结 5 2069
日久生厌
日久生厌 2020-11-27 16:26

I don\'t know how the data should be formatted for AddAddress PHPMailer function; I need the email to be sent to multiple recipients so I tried

$to = \"me@d         


        
5条回答
  •  春和景丽
    2020-11-27 17:13

    You need to call the AddAddress function once for each E-Mail address you want to send to. There are only two arguments for this function: recipient_email_address and recipient_name. The recipient name is optional and will not be used if not present.

    $mailer->AddAddress('recipient1@domain.com', 'First Name');
    $mailer->AddAddress('recipient2@domain.com', 'Second Name');
    $mailer->AddAddress('recipient3@domain.com', 'Third Name');
    

    You could use an array to store the recipients and then use a for loop. I hope it helps.

提交回复
热议问题