Jump to content

Search the Community

Showing results for tags 'autorresponder'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 1 result

  1. Hello Guys, A new guy here. And new also to playing with PHP. I have a php file that controls a reservation form for a restaurant, however there is not an autoresponder built in it. And I was wondering how hard would it be to add some code to it to get it working. This is the current code. Thank you so much for looking into this and helping me out. <?php /* Template Name: Page: Reservation */ ?> <?php // Error Messages $reservation_datepicker_error = __('Please select a date.', 'gp'); $reservation_hour_error = __('Please select the hour.', 'gp'); $reservation_minutes_error = __('Please select a minutes.', 'gp'); $reservation_persons_error = __('Please fill the number of persons.', 'gp'); $reservation_name_error = __('Please fill your name.', 'gp'); $reservation_phone_error = __('Please fill your phone number.', 'gp'); $reservation_email_error = __('Please fill your email address.', 'gp'); $reservation_email_invalid_error = __('Please fill the valid email address.', 'gp'); if(isset($_POST['reservation_submitted'])) { if (trim($_POST['reservation_datepicker']) === '') { $error_message['reservation_datepicker_error'] = $reservation_datepicker_error; $has_reservation_error = true; } else { $date_field = trim($_POST['reservation_datepicker']); } if (trim($_POST['reservation_time']) === '') { $error_message['reservation_time_error'] = $reservation_time_error; $has_reservation_error = true; } else { $time_field = trim($_POST['reservation_time']); } if (trim($_POST['reservation_persons']) === '') { $error_message['reservation_persons_error'] = $reservation_persons_error; $has_reservation_error = true; } else { $persons_field = trim($_POST['reservation_persons']); } if (trim($_POST['reservation_name']) === '') { $error_message['reservation_name_error'] = $reservation_name_error; $has_reservation_error = true; } else { $name_field = trim($_POST['reservation_name']); } if (trim($_POST['reservation_phone']) === '') { $error_message['reservation_phone_error'] = $reservation_phone_error; $has_reservation_error = true; } else { $phone_field = trim($_POST['reservation_phone']); } if (trim($_POST['reservation_email']) === '') { $error_message['reservation_email_error'] = $reservation_email_error; $has_reservation_error = true; } else if (!eregi("^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}$", trim($_POST['reservation_email']))) { $error_message['reservation_email_invalid_error'] = $reservation_email_invalid_error; $has_reservation_error = true; } else { $email_field = trim($_POST['reservation_email']); } if (function_exists('stripslashes')) { $message_field = stripslashes(trim($_POST['reservation_message'])); } else { $message_field = trim($_POST['reservation_message']); } if (trim($_POST['reservation_protection']) === '') { $protection_field = trim($_POST['reservation_protection']); } else { $has_reservation_error = true; } if (!isset($has_reservation_error)) { $date_title = __('Date and time:', 'gp'); $persons_title = __('Number of persons:', 'gp'); $name_title = __('Name:', 'gp'); $phone_title = __('Phone:', 'gp'); $email_title = __('Email:', 'gp'); $message_title = __('Message:', 'gp'); $to = get_option('gp_form_reservations_email'); if (!isset($to) || ($to == '') ){ $to = get_option('admin_email'); } if (get_option('gp_form_reservations_subject' != '')) { $subject = get_option('gp_form_reservations_subject'); } else { $subject = __('Reservation Form', 'gp'); } $body = " <html> <body style='font-family:Arial, Verdana, Tahoma, sans-serif;margin:0;padding:0;font-size:12px;color:#50505a;'> <table width='100%' border='0' cellpadding='0' cellspacing='0' bgcolor='#f5f5fa'> <tr> <td style='background:#f5f5fa;' align='center'> <table width='600' border='0' cellspacing='0' cellpadding='0' bgcolor='#ffffff' style='padding:15px 30px 30px 30px; margin:30px 0;'> <tr> <th colspan='2' style='text-align: left;'><h1 style='font-size:22px;padding-bottom:10px;'>$subject</h1></th> </tr> <tr> <th style='text-align:left;width:150px;padding:7px 0;border-bottom:1px solid #f5f5fa;'> $date_title </th> <td style='padding:7px 0;border-bottom:1px solid #f5f5fa;'> $date_field, $time_field </td> </tr> <tr> <th style='text-align:left;width:150px;padding:7px 0;border-bottom:1px solid #f5f5fa;'> $persons_title </th> <td style='padding:7px 0;border-bottom:1px solid #f5f5fa;'> $persons_field </td> </tr> <tr> <th style='text-align:left;width:150px;padding:7px 0;border-bottom:1px solid #f5f5fa;'> $name_title </th> <td style='padding:7px 0;border-bottom:1px solid #f5f5fa;'> $name_field </td> </tr> <tr> <th style='text-align:left;width:150px;padding:7px 0;border-bottom:1px solid #f5f5fa;'> $phone_title </th> <td style='padding:7px 0;border-bottom:1px solid #f5f5fa;'> $phone_field </td> </tr> <tr> <th style='text-align:left;width:150px;padding:7px 0;border-bottom:1px solid #f5f5fa;'> $email_title </th> <td style='padding:7px 0;border-bottom:1px solid #f5f5fa;'> $email_field </td> </tr> <tr> <th valign='top' style='text-align:left;width:150px;padding: 7px 0;'> $message_title </th> <td style='padding:7px 0;'> $message_field </td> </tr> </table> </td> </tr> </table> </body> </html> "; $headers = array('From: ' . $name_field . ' <' . $email_field . '>', 'Content-Type: text/html', 'Reply-To:' . $email_field); $h = implode("\r\n",$headers) . "\r\n"; wp_mail($to, $subject, $body, $h); $has_reservation_sent = true; } } ?> <?php get_header(); ?> <header class="page-header"> <h1><?php the_title(); ?></h1> </header><!-- page-header --> <div class="content shadow-top left"> <div class="content-container"> <div class="page-full left"> <div class="page-full-container"> <?php if (have_posts()) { while (have_posts()) { the_post(); ?> <?php if (!empty($post->post_content)) { ?> <div class="content-page left"> <div class="content-page-container"> <?php the_content(); ?> </div><!-- content-page-container --> </div><!-- content-page --> <?php } ?> <?php if (isset($has_reservation_sent) && $has_reservation_sent == true) { ?> <div class="validation-success"> <h4> <?php _e('Thank you. Email has been sent. Our staff will confirm you the booking by email or SMS.', 'gp'); ?> </h4> </div> <?php } else { ?> <?php if (isset($has_reservation_error)) { ?> <div class="validation-error"> <h4> <?php _e('Sorry, an error occurred, email hasn\'t been sent.', 'gp') ?> </h4> </div> <?php } ?> <div class="form-reservation"> <form action="<?php the_permalink(); ?>" id="form-reservation" class="form" method="post"> <fieldset> <div class="form-block first left"> <header class="form-header"> <h2><?php _e('Reservation information', 'gp'); ?></h2> </header><!-- form-header --> <div class="input-box left"> <label for="reservation_datepicker" ><?php _e('Date', 'gp'); ?>:</label> <span class="required-star">*</span><br /> <input name="reservation_datepicker" id="reservation_datepicker" class="required<?php if (isset($error_message['reservation_datepicker_error'])) { ?> error<?php } ?>" type="text" value="<?php if(isset($_POST['reservation_datepicker'])) { echo $_POST['reservation_datepicker']; } ?>" /> <?php if (isset($error_message['reservation_datepicker_error'])) { ?> <label for="reservation_datepicker" class="error"><?php echo $error_message['reservation_datepicker_error']; ?></label> <?php } ?> </div><!-- input-box --> <div class="input-box left"> <label for="reservation_time"><?php _e('Time', 'gp'); ?>:</label> <span class="required-star">*</span><br /> <input name="reservation_time" id="reservation_time" class="required<?php if (isset($error_message['reservation_time_error'])) { ?> error<?php } ?>" type="text" value="<?php if(isset($_POST['reservation_time'])) { echo $_POST['reservation_time']; } ?>" /> <?php if (isset($error_message['reservation_time_error'])) { ?> <label for="reservation_time" class="error"><?php echo $error_message['reservation_time_error'] ?></label> <?php } ?> </div><!-- input-box --> <div class="input-box left last"> <label for="reservation_persons"><?php _e('Number of persons', 'gp'); ?>:</label> <span class="required-star">*</span><br /> <input name="reservation_persons" id="reservation_persons" class="required number<?php if (isset($error_message['reservation_persons_error'])) { ?> error<?php } ?>" type="text" value="<?php if(isset($_POST['reservation_persons'])) { echo $_POST['reservation_persons']; } ?>" /> <?php if (isset($error_message['reservation_persons_error'])) { ?> <label for="reservation_persons" class="error"><?php echo $error_message['reservation_persons_error'] ?></label> <?php } ?> </div><!-- input-box --> <br class="clear" /> </div><!-- form-block --> <div class="form-block"> <header class="form-header"> <h2><?php _e('Personal information', 'gp'); ?></h2> </header> <div class="input-box left"> <label for="reservation_name"><?php _e('Name', 'gp'); ?>:</label> <span class="required-star">*</span><br /> <input name="reservation_name" id="reservation_name" class="required<?php if (isset($error_message['reservation_name_error'])) { ?> error<?php } ?>" type="text" value="<?php if(isset($_POST['reservation_name'])) { echo $_POST['reservation_name']; } ?>" /> <?php if (isset($error_message['reservation_name_error'])) { ?> <label for="reservation_name" class="error"><?php echo $error_message['reservation_name_error'] ?></label> <?php } ?> </div><!-- input-box --> <div class="input-box left"> <label for="reservation_phone"><?php _e('Phone', 'gp'); ?>:</label> <span class="required-star">*</span><br /> <input name="reservation_phone" id="reservation_phone" class="required<?php if (isset($error_message['reservation_phone_error'])) { ?> error<?php } ?>" type="text" value="<?php if(isset($_POST['reservation_phone'])) { echo $_POST['reservation_phone']; } ?>" /> <?php if (isset($error_message['reservation_phone_error'])) { ?> <label for="reservation_phone" class="error"><?php echo $error_message['reservation_phone_error'] ?></label> <?php } ?> </div><!-- input-box --> <div class="input-box last left"> <label for="reservation_email"><?php _e('Email', 'gp'); ?>:</label> <span class="required-star">*</span><br /> <input name="reservation_email" id="reservation_email" class="required email<?php if (isset($error_message['reservation_email_error']) || isset($error_message['reservation_email_invalid_error'])) { ?> error<?php } ?>" type="text" value="<?php if(isset($_POST['reservation_email'])) { echo $_POST['reservation_email']; } ?>" /> <?php if (isset($error_message['reservation_email_error'])) { ?> <label for="reservation_email" class="error"><?php echo $error_message['reservation_email_error'] ?></label> <?php } ?> <?php if (isset($error_message['reservation_email_invalid_error'])) { ?> <label for="reservation_email" class="error"><?php echo $error_message['reservation_email_invalid_error'] ?></label> <?php } ?> </div><!-- input-box --> <div class="input-box-wide left"> <label for="reservation_message"><?php _e('Message', 'gp'); ?>:</label><br /> <textarea name="reservation_message" id="reservation_message" cols="110" rows="5"><?php if(isset($_POST['reservation_message'])) { if (function_exists('stripslashes')) { echo stripslashes($_POST['reservation_message']); } else { echo $_POST['reservation_message']; } } ?></textarea> </div><!-- input-box-wide --> <input name="reservation_protection" id="reservation_protection" type="text" class="no-display" value="" /> <br class="clear" /> </div><!-- form-block --> <div class="buttons left"> <input type="hidden" name="reservation_submitted" id="reservation_submitted" value="true" /> <button type="submit" name="button-submit" class="button-standard left" title="<?php _e('Make a reservation', 'gp'); ?>"> <?php _e('Make a reservation', 'gp'); ?> </button> <div class="required-star-info">* <?php _e('Required fields', 'gp'); ?></div> <br class="clear" /> </div><!-- buttons --> </fieldset> <br class="clear" /> </form> </div><!-- form-reservation --> <?php } ?> <?php } //while } //if wp_reset_query(); ?> <br class="clear" /> </div><!-- page-full-container --> </div><!-- page-full --> <br class="clear" /> </div><!-- content-container --> </div><!-- content --> <?php get_footer(); ?>
×
×
  • 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.