I use the following for sending email as part of Form processing:
mail("me@domainname.xyz", $subject, $message, $from);
My question is this. How do you send the same email to multiple addresses?
1. add multiple email addresses in the same mail function line separated by commas?
2. add separate mail functions for each email using the same $subject, $message and $from variables in each?
3. other?
I tried #2 and it didn't work.

mail("me@domainname.xyz", $subject, $message, $from);
My question is this. How do you send the same email to multiple addresses?
1. add multiple email addresses in the same mail function line separated by commas?
2. add separate mail functions for each email using the same $subject, $message and $from variables in each?
3. other?
I tried #2 and it didn't work.
