Jump to content

my check boxes are not being sent in the email


hammahead

Recommended Posts

I cannot figure out why my checkbox values are not being included in my emails I am posting my html and my php.

 

<form method="post" action="../leaf.php">
                  <input type="hidden" name="subject" value="Cleanup">


<div>
                <table width="425" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><label><span class="ie7bugfix01">Name:<span class="colour">*<br />
    </span></span> <input type="text" name="contact-name" class="text" value="" /></label></td>
    <td><label><span class="ie7bugfix01">Email:<span class="colour">*</span></span><br />
<input type="text" name="contact-email" class="text" value="" /></label></td>
  </tr>
  <tr>
    <td>      <label><span class="ie7bugfix01">Phone No:</span> <br />
      <input type="text" name="contact-mobile" class="text" value="" /></label>
 </td>
  </tr>
    <tr>
    <td><label><span class="ie7bugfix01">Address:<br />
    </span> <input type="text" name="contact-street" class="text" value="" /></label></td>
    <td><label><span class="ie7bugfix01">City:</span><br />
<input type="text" name="contact-city" class="text" value="" /></label></td>
  </tr>
 <tr>
    <td><label><span class="ie7bugfix01">Property Size:<br />
    </span> <input type="text" name="property-size" class="text" value="" /></label></td>
    
  </tr>
  <tr>
   <td><label><span class="ie7bugfix01">Service request:</span><br /></label>
<input type="checkbox" name="projects[]" value="Lawn Maintenance">
   <label for="type1">Lawn Maintenance</label>
   <br>
   <input type="checkbox" name="projects[]" value="Mulching">
   <label for="type2">Mulching</label>
   <br>
   <input type="checkbox" name="projects[]" value="Gutter Cleaning/Repair">
   <label for="type3">Gutter Cleaning/Repair</label> <br>
   <input type="checkbox" name="projects[]" value="Revitalization">
   <label for="type1">Revitalization</label>
   <br>
<input type="checkbox" name="projects[]" value="Power Washing">
   <label for="type2">Power Washing</label>
   <br>
   </td><td>
   <br>
   <input type="checkbox" name="projects[]" value="Hardscapes">
   <label for="type3">Hardscape</label>
   <br>
   <input type="checkbox" name="projects[]" value="Deck Work">
   <label for="type3">Deck Treatments/Repair/Construction</label>
   <br>
   <input type="checkbox" name="projects[]" value="Snow Removal">
   <label for="type3">Snow Removal</label>
   <br><input type="checkbox" name="projects[]" value="Tree Trimming">
   <label for="type3">Tree Trimming/Removal</label>
   <br>
<input type="checkbox" name="projects[]" value="Privacy Barriers">
   <label for="type3">Privacy Barriers</label> 
   </td></tr>
  <tr>
  </tr>
</table>
<label><span class="ie7bugfix01">Describe your project:<span class="colour">*</span></span><br />
<textarea name="contact-comments" class="text" cols="68" rows="5"></textarea></label>
      
      
      
      <p class="submit">
                   <input type="submit" class="submit" value="submit" />
                   <input type="button" class="reset" value="reset" />
      </p>
     </div></form>


<?php 
$from = $_REQUEST['contact-email'] ; 
$name = $_REQUEST['contact-name'] ;
$subject = $_REQUEST['subject'] ; 
$headers = "From: $from"; 
$headers = "Subject: $subject"; 


$fields = array(); 
$fields{"subject"} = "Subject"; 
$fields{"contact-name"} = "Name"; 
$fields{"contact-email"} = "E-mail";
$fields{"contact-mobile"} = "Phone";
$fields{"contact-street"} = "Address";
$fields{"contact-city"} = "City";
$fields{"property-size"} = "Size";
$selectedProjects  = 'None';


if(isset($_POST['projects']) && is_array($_POST['projects']) && count($_POST['projects']) > 0){
    $selectedProjects = implode(', ', $_POST['projects']);
}


$body .= 'Selected Projects: ' . $selectedProjects;
$fields{"contact-comments"} = "Message"; 


$body = "We have received the following information:\n\n"; foreach($fields as $a => $b){ $body .= sprintf("%20s: %s\n",$b,$_REQUEST[$a]); } 


$headers2 = "From: t***@toma***.com"; 
$subject2 = "Thank you for contacting us"; 
$autoreply = "Thank you for contacting us. Somebody will get back to you as soon as possible, usualy within 48 hours. 


By choosing TOMA you will be able to enjoy your time off with the peace of mind that your lawn is always professionally serviced.  Never worry about finding time to work in the lawn again and gain back at least 35 hours of summer this season!


TOMA provides weekly as needed lawn maintenance for your home or business. We are dedicated to every detail of your unique lawn. We always arrive with sharp blades, we police your property and we make sure everything is left freshly groomed and clean. Easy to sign up, easy billing, invest in your home and time today!


FREE ESTIMATES WHEN YOU CALL ________.


If you have any more questions, please consult our website at www.t**.com or call _________ to get started.";


if($from == '') {print "You have not entered an email, please go back and try again";} 
else { 
if($name == '') {print "You have not entered a name, please go back and try again";} 
else { 
$send = mail("t***@t**.com", $subject, $body, $headers); 
$send2 = mail($from, $subject2, $autoreply, $headers2); 
if($send) 
{header( "Location: http://www.**t.com/thank-you.html" );} 
else 
{print "We encountered an error sending your mail, please try again"; } 
}
}
?> 
Edited by Ch0cu3r
Link to comment
Share on other sites

$body .= 'Selected Projects: ' . $selectedProjects;
$fields{"contact-comments"} = "Message"; 
 
$body = "We have received the following information:\n\n"; foreach($fields as $a => $b){ $body .= sprintf("%20s: %s\n",$b,$_REQUEST[$a]); } 

Look closely at the first and last lines above.

Edited by Psycho
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.