RE: [PHP] email certain people

This is a discussion on RE: [PHP] email certain people within the PHP General forums, part of the PHP Programming Forums category; > -----Original Message----- > From: Davy Campano [mailto:dcampano@leeuniversity.edu] > > I am making a webpage, and I ...


Go Back   Usenet Forums > PHP Programming Forums > PHP General

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 10-10-2003
Andrew Whyte
 
Posts: n/a
Default RE: [PHP] email certain people



> -----Original Message-----
> From: Davy Campano [mailto:dcampano@leeuniversity.edu]
>
> I am making a webpage, and I want to be able to email certain
> people that are selected by a checkbox when I click the
> submit button. I am trying to figure out what the best way
> is to do this. There are four people on the page and they
> each start with their name checked (so they should receive an
> email when I click submit). How would I go writing a script
> to check if these "checkboxes" are marked and then emailing
> each person??? Thanks for any help!



Davy,

Something along the lines of:

Your form items would be:

<INPUT TYPE="CHECKBOX" NAME="EMAIL[]" VALUE="user1@email.com"> user1 @
email.com <BR>
<INPUT TYPE="CHECKBOX" NAME="EMAIL[]" VALUE="user2@email.com"> user2 @
email.com <BR>
<INPUT TYPE="CHECKBOX" NAME="EMAIL[]" VALUE="user3@email.com"> user3 @
email.com <BR>

Then in PHP this get posted to, something like:

if ( is_array($_POST["EMAIL"]) )
{
// Loop through each...
foreach ($_POST["EMAIL"] as $key => $email_addr )
{
// send your email to each user...
}
}

This way you can simply add more email input fields to the form over
time
and the code will always work with it...

I'll leave the email sending as an exercise for the reader, there are
ample
good examples on php.net's doco about this.

Cheers, Andrew

--
Andrew Whyte Ph: +61 7 4930 9838
Corporate Systems Administrator Fx: +61 7 4930 9254
Information Technology Division Em: a.whyte@cqu.edu.au
Central Queensland University, Rockhampton, Qld, 4702
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 06:53 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0