I have the sendmail php working but to one email recipient only. i would like it to go to multiple recipients. Tried a couple of different ways to send to multiple address'
I have it set up like this but this doesn't seem to work:
$toemails[] = array(
'email' => 'info@blahblahblah.com', 'steve@blahblahblah.com', 'mary@gmail.com',// Your Email Address
'name' => 'info' // Your Name
);
how would I send to multiples?
