phpMailer - How do you Remove Recipients
There are a lot of StackOverflow questions on this topic, but I couldn't find one that was able to help with the issue I'm having. The script that I'm writing sends out multiple emails to various recipients with different message contents. I can get this working by re-initializing the phpMailer object multiple times, but what I'd like to be able to do is create the object a single time, and then re-assign the following fields: $mail->AddAddress($email); $mail->Subject = $subject; $mail->IsHTML(false); $mail->Body = $message; That way I can just run those four lines of code and then send the