Jump to content

Easy Problem


Loons

Recommended Posts

[code]
<form method="post" action="mail.php?send=1">
<input type="text" name="subject" value="Subject goes here" /><br />
<textarea name="body">Message goes here</textarea><br />
<input type="submit" value="Send" />
</form>
<pre>
<?PHP
    if($_GET['send'] == 1)
    {
        $from = 'from@address.here';                
        $sendto = array(    'address@one.com',
                            'address@two.com',
                            'address@three.com');    
        foreach($sendto as $val)
        {
            echo 'Sending message to: '.$val.' <br />';
            mail($val, $_POST['subject'], $_POST['body'], 'From: '.$from);
        }
    }
?>
</pre>
[/code]

i'm working on a project for school and I can't get this damn thing to work, I want to send 1 e-mail to like 150 people, but this is all i could get and it doesn't work - could someone please explain it to me or help me fix it?
Link to comment
Share on other sites

try this
[!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]<form method="post" action="mail.php">
<input type="text" name="subject" value="Subject goes here" /><br />
<textarea name="body">Message goes here</textarea><br />
<input type="submit" name="send" value="Send" />
</form>
<pre>
<?PHP
if($_GET['send'] == true)
{
$from = "from@address.here";
$subject = $_POST['subject'];
$sendto ="address@one.com, address@two.com,address@three.com";
$messege="$_POST[body] r/n
Sending message to: $sendto r/n";
mail($sendto, $subject, $message, From: $from);
}

?>
</pre>
[/quote]
hopfully this helps
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.