Welcome Guest, Not a member yet? Register   Sign In
Send e-mail from form to random people
#2

[eluser]Elias Rufino[/eluser]
Hello guys. I solved it just using PHP, and here is the way I used:

Code:
<?php
// my list of emails
$my_array = array("[email protected]", "[email protected]", "[email protected]");
        for ($i=0; $i<=10; $i++)
        {
            $random = array_rand($my_array);
            $rand_mail = $my_array[$random];
        }

// my fixed mail
$fixed_mail = "[email protected]";

$send_to = $fixed_mail.", ".$rand_mail;


echo $send_to;
?&gt;

Thank you for the attention, hope this can help someone too.



Elias


Messages In This Thread
Send e-mail from form to random people - by El Forum - 09-05-2012, 11:25 PM
Send e-mail from form to random people - by El Forum - 09-06-2012, 10:49 AM
Send e-mail from form to random people - by El Forum - 09-10-2012, 08:40 AM



Theme © iAndrew 2016 - Forum software by © MyBB