I'm primarily a designer with very little PHP experience. However, I have to get a PHP mailform working. There is a legacy backend from the previous person who worked on the site. I got it working, but need to add multiple recipients. It now works with one additional email address, but not more than that. I need to be able to add several. The code snippet I'm having trouble with is here:
Code: Select all
$sendTo = "recipient1@address1.com" . ", ";
$sendTo .= "recipient2@address2.com";Thanks,
--kh