|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here! |
|
#1
|
|||
|
|||
|
Multiple email recipients
Does anyone know how I can get a hp mailto to go to multiple recipients?
<input type="hidden" name="mailto" value="notsure@itwontwork2multiple.com"> Thanks for your help in advanced. -phox |
|
#2
|
|||
|
|||
|
RE: Multiple email recipients
What is a "hp"?
Do you wanna do this using php mail() or thru a link on a page? |
|
#3
|
|||
|
|||
|
RE: Multiple email recipients
Most of the time, addresses mut be comma-separated
mailto="p1@srv1.com,p2@srv2.com" |
|
#4
|
|||
|
|||
|
RE: Multiple email recipients
<?php
$mailto"1@server.com,2@server.com,3@server.com"; $mailto = explode(",", $mailto); //mailto is now an array foreach($mailto as $email) { mail();//mail fucntion here } that should do what you want |
|
#5
|
|||
|
|||
|
RE: Multiple email recipients
arrays make me shiver inside with sweet goodness
|
|
#6
|
|||
|
|||
|
RE: Multiple email recipients
|
![]() |
| Viewing: Codewalkers Forums > PHP Related > PHP Coding > Multiple email recipients |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|