Sending Multiple Mails In PHP Mailer

前端 未结 3 1652
走了就别回头了
走了就别回头了 2021-02-11 04:30

I have been writing a trigger that mails an email using PHP mailer. The problem with the code is that it is sending multiple mails to a single recipient. I even tried using the

3条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-11 04:44

    I am using almost same script, but I also set this:

    while(...)
    {
      $mail = new PHPMailer(); //reset class instance to new one
      .....
      $mail->From = $fromAddress;   
      $mail->FromName = $fromAddress;
      $mail->AddAddress($toAdress);
      ....
    }
    

    .... - same code as you have

提交回复
热议问题