Jump to content

Execute only on filled out inputs


signature16

Recommended Posts

I am trying to create a little "refer a friend" thing to put on a website.  There are six text boxes where a visitor can type in different emails.  When the visitors submits, I want a default email to go out to the emails given.

 

How can I set it up so that 3 mail() commands are executed if 3 emails are entered.... or 6 mail() commands if 6 emails are entered? 

 

Does that make sense?

 

[attachment deleted by admin]

Link to comment
Share on other sites

This is how I have mine

 

The form I use uses a drop down menu, so this is it:

<select name="person[]" multiple size="10">

 

 

To send the mail according to how may were selected.

$to=$_POST['person'];

$together = implode(", ", $to);
for($i = 0; $i < count($to); $i++){
//mail the user
    $subject = "Refer";
    $message = "	

$_POST[message]

===================================
This is an automated email and unchecked account, please do not reply this email!";  
}

     mail($together, $subject, $message, 
        "From: NO REPLY<NO-REPLY@yoursite.com/>\n");

 

 

Hope 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.