Jump to content

Php Mail!!


irishpeck

Recommended Posts

Hi Guys,

 

I am currently in the process of editing a template for a client. This template has a contact page and a book a table page. Both have the same mail.php form to authenticate and send the mail. The contact form is working grand and that sends perfectly its the Book a table page that aint working please help.

 

heres the 2 code snippets for the form for Booking a table and the php form! PLease note i have made a copy of mail.php and renamed it mailbooking.php to distinguish the forms.

 

<form action="php/mailbooking.php" method="post" enctype="multipart/form-data">
                                <div class="book-table-form">
                                  <label>Party size:</label>
                                  <input class="input-field mid-short" name="party-size" id="party-size" />
                                  
                                  <label>Date:</label>
                                  <input class="input-field date" name="name" id="datepicker" />
                                  
                                  <label>Meal Type:</label>
                                  <div class="selector" id="uniform-"><span style="-moz-user-select: none;">Please select your meal type:</span>
                                  <select style="opacity: 0;">
                                    <option value="option1">Christmas Menu</option>
                                    <option value="option2">Dinner</option>
                                    <option value="option3">French Value Menu</option>
                                    <option value="option3">Group Menu</option>
                                  </select></div>
                                  
                                  <label>Time:</label>
                                  <input maxlength="2" class="input-field short" name="name" id="hours" /> : <input maxlength="2" class="input-field short" name="minutes" id="time" />
                                  
                                  <label>Name:</label>
                                  <input class="input-field" name="name" id="name1" />
                                  
                                  <label>Email:</label>
                                  <input class="input-field" name="email" id="email1" />
                                  
                                  <label>Phone:</label>
                                  <input class="input-field" name="phone" id="phone1" />
                                  
                                  <label>Notes:</label>
                                  <textarea class="textarea-field" name="message" id="message1" cols="80" rows="5"></textarea>
                                  <br/>
                                  <input type="submit" name="" class="submit" value="Send Email" />
							  <input type="reset" name="" class="reset" value="Clear form" />
                                
                                </div>
                              </form>

<?php

// CONFIGURATION --------------------------------------------------------------

// This is the email where the contact mails will be sent to.
$config['recipient'] = '[email protected]';

// This is the subject line for contact emails.
// The variable %name% will be replaced with the name of the sender.
$config['subject'] = 'Query from Website %name%';

// These are the messages displayed in case of form errors.
$config['errors'] = array
(
'no_name'       => 'Please enter your name',
'no_email'      => 'Your Email adresse is required.',
'invalid_email' => 'You entered an invalid email address.',
'no_message'    => 'Please, include your message.',
);

// END OF CONFIGURATION -------------------------------------------------------


// Ignore non-POST requests
if ( ! $_POST)
exit('Nothing to see here. Please go back to the site.');

// Was this an AJAX request or not?
$ajax = (isset($_SERVER['HTTP_X_REQUESTED_WITH']) AND strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');

// Set the correct HTTP headers
header('Content-Type: text/'.($ajax ? 'plain' : 'html').'; charset=utf-8');

// Extract and trim contactform values
$name    = isset($_POST['name']) ? trim($_POST['name']) : '';
$email   = isset($_POST['email']) ? trim($_POST['email']) : '';
$message = isset($_POST['message']) ? trim($_POST['message']) : '';

// Take care of magic quotes if needed (you really should have them disabled)
set_magic_quotes_runtime(0);
if (get_magic_quotes_gpc())
{
$name    = stripslashes($name);
$email   = stripslashes($email);
$message = stripslashes($message);
}

// Initialize the errors array which will also be sent back as a JSON object
$errors = NULL;

// Validate name
if ($name == '' || strpos($name, "\r") || strpos($name, "\n"))
{
$errors['name'] = $config['errors']['no_name'];
}

// Validate email
if ($email == '')
{
$errors['email'] = $config['errors']['no_email'];
}
elseif ( ! preg_match('/^[-_a-z0-9\'+*$^&%=~!?{}]++(?:\.[-_a-z0-9\'+*$^&%=~!?{}]+)*+@(??![-.])[-a-z0-9.]+(?<![-.])\.[a-z]{2,6}|\d{1,3}(?:\.\d{1,3}){3})(?::\d++)?$/iD', $email))
{
$errors['email'] = $config['errors']['invalid_email'];
}

// Validate message
if ($message == '')
{
$errors['message'] = $config['errors']['no_message'];
}

// Validation succeeded
if (empty($errors))
{
// Prepare subject line
$subject = str_replace('%name%', $name, $config['subject']);

// Additional mail headers
$headers  = 'Content-Type: text/plain; charset=utf-8'."\r\n";
$headers .= 'From: '.$email;

// Send the mail
if ( ! mail($config['recipient'], $subject, $message, $headers))
{
	$errors['server'] = 'There seems to be a technical problem with our server. We are sorry. '.
	                    'Could you mail your message directly at '.$config['recipient'].'? Thank you.';
}
}

if ($ajax)
{
// Output the possible errors as a JSON object
echo json_encode($errors);
}
else
{
// Show a simple HTML feedback message in case of non-javascript support
if (empty($errors))
{
	echo '<h1>Thank you</h1>';
	echo '<p>Your message has been sent.</p>';
}
else
{
	echo '<h3>Oops!</h3>';
	echo '<h5>Please go back and fix the following errors:</h5>';
	echo '<ul><li>';
	echo implode('</li><li>', $errors);
	echo '</li></ul>';
}
}

 

 

Link to comment
https://forums.phpfreaks.com/topic/220519-php-mail/
Share on other sites

Well  i can explain exactly whats happening i need help changing it is all.

 

Ok so basically the mail.php form is built to send a contact form that is made up of Name, Email and Message and when this delivers the message to my mailbox it works.

 

The Book A Table form has a number of components i.e Party Size (how many people to book in), Date (has a calendar attached), Meal Type (dropdown menu with 4 options), Time, Name, Email and Notes. Now the problem is i need everything the person enters on this form to be delivered in a mail but because im using mail.php its only sending the name, email and notes section. I need help to code it so that when the person fills in the book a  table form it sends all information requested i.e Party Size, Date etc.

Link to comment
https://forums.phpfreaks.com/topic/220519-php-mail/#findComment-1142431
Share on other sites

The reason it's not working for your other form is because your PHP form parsing file is only reading the form fields: email, message, and name. If you wanted to include other form fields you would have to grab the POST variables individually for the form-- or if you wanted it to be dynamic for whatever form you submit to it you could do a foreach loop for your $_POST array.

Link to comment
https://forums.phpfreaks.com/topic/220519-php-mail/#findComment-1142459
Share on other sites

Try this. On the line that says:

$message = isset($_POST['message']) ? trim($_POST['message']) : '';

 

change that to

$message = 0;
foreach ($_POST as $key=>$val){
     $message .= trim($key).": ".trim($val)"\n";
}

 

This reads in all POST variables and displays them in the email body.. The simplest fix but it may not look pretty :P

Link to comment
https://forums.phpfreaks.com/topic/220519-php-mail/#findComment-1142748
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.