I am using a basic PHP form. On the process page, it is currently sending the completed form to a single recipient. Now I find that I need to send this completed form to three separate recipients instead. I'm not all that up to date on the protocols, so I am asking your help. My current line is as follows:
$mymail = 'bob@www.com';
I also want steve@www.com and bill@www.com to get this email form as well.
What is the proper protocol I would need to add to this line to ensure that all three received the emailed form? Do I separate by commas? Spaces? Both
Your help is appreciated.
$mymail = 'bob@www.com';
I also want steve@www.com and bill@www.com to get this email form as well.
What is the proper protocol I would need to add to this line to ensure that all three received the emailed form? Do I separate by commas? Spaces? Both
Your help is appreciated.
Comment