PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
Hi,
I have a simple question,
Here is the code I am using to send an email via php from flash.
everything is working fine, but I would like to submit this to multiple email addresses,, instead of the firstemail@mail.com address,
can someone please help,,, here is the code:
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
How many addresses are you referring to? Using mail() is tiresome when sending to many addresses since it opens a new connection for each message. Classes like PHPMailer and Swift avoid that by using a single connection do all of the work (== faster).