Search found 1 match
- Tue Jun 20, 2006 9:15 am
- Forum: PHP - Theory and Design
- Topic: mail function delay for seconds
- Replies: 1
- Views: 784
mail function delay for seconds
when submit a form, the web page goes to a server side php page "send_note.php", the code of the send_note.php is mail some text content to servel people. when finish the mail(), the simple code is like foreach ($to_array AS $to_mail) { $IS_MAIL = mail($to_mail, $xxx, xxx, xxx); } echo &qu...