<?php
/* Email address where the messages should be delivered */
$to =
'xfm_rox@hotmail.com';
/* From email address, in case your server prohibits sending emails from
* addresses other than those of your own domain (e.g.
email@yourdomain.com).
* If this is used then all email messages from your contact form will appear
* from this address instead of actual sender. */
$from =
'info@dommesites.x10hosting.com';
/* This will be appended to the subject of contact form message */
$subject_prefix = 'My Website Contact';
/* Form header file */
$header_file = './formfiles/form-header.php';
/* Form footer file */
$footer_file = './formfiles/form-footer.php';
/* Form width in px or % value */
$form_width = '70%';
/* Form background color or image. Value can contain just a color value or
* complete background shorthand property. For example:
* $form_background = 'url(formbg.gif) #fff repeat-x' */
$form_background = '#320033';
/* Form border color */
$form_border_color = '#320033';
/* Form border width */
$form_border_width = '0px';
/* Form border style. Examples - dotted, dashed, solid, double */
$form_border_style = 'solid';
/* Form cell padding */
$cell_padding = '5px';
/* Form left column width */
$left_col_width = '25%';
/* Form font size */
$font_size = '12px';
/* Empty/Invalid fields will be highlighted in this color */
$field_error_color = '#FF0000';
/* Thank you message to be displayed after the form is submitted. Can include
* HTML tags. Write your message between <!-- Start message --> and <!-- End message --> */
$thank_you_message = <<<EOD
<!-- Start message -->
<p>We have received your message. If required, we'll get back to you as soon as possible.</p><br /><br /><br /><br /><br /><br /><br /><br />
<!-- End message -->
EOD;
/* URL to be redirected to after the form is submitted. If this is specified,
* then the above message will not be shown and user will be redirected to this
* page after the form is submitted. Example:
* $thank_you_url = 'http://www.yourwebsite.com/thank_you.html'; */
$thank_you_url = 'thankyou.html';
/* Default character encoding of emails */
$charset = 'charset=UTF-8';
/*******************************************************************************
* Do not change anything below, unless of course you know very well
* what you are doing
*******************************************************************************/
$name = array('Name','name',NULL,NULL);
$email = array('Email','email',NULL,NULL,NULL);
$subject = array('Subject','subject',NULL,NULL);
$message = array('Message','message',NULL,NULL);
$code = array('Code','captcha_code',NULL,NULL,NULL);
?>