English Manual  
====================== 

PHPFormMail is a universal WWW form to e-mail gateway...

There are only a few required form input tag which must be specified in order 
for this script to work with your existing forms. Other hidden configuration 
fields can also be used to enhance the operation of FormMail on your site.


FORM-ADJUSTMENTS (PHPSformmail.php):
====================================


These are the only required form input tag which must be specified in order
for this script to work with your existing forms.

1) This optional field will let you set what e-mail address the e-mail comes from.
   It will not affect the e-mail address listed in the email field. It's purely
   for looks it will also not affect the Return-Path field, that is 
   *only* set by the mail server for security reasons.
    
   z.B define('FROM', 'Form-Submission@MyDomain.ch');
    
    
2) This array allows you to define the domains that you will allow forms to
   reside on and use your PHPFormMail script. If a user tries to put a form
   on another server, that is not in your list, they will receive an error
   message when someone tries to fill out their form. 
   
   Example: If the recipient of the e-mail is mail@MyDomain.ch and 
            the form is hosted on MyDomain.ch, your $referers 
            array will have to look like


   example $referers = array('www.MyDomain.ch', 'MyDomain.ch');


3) The format is $recipient_array = array(key => value) and the key can be whatever 
   you like. You'll want the value to be a valid e-mail address. 


   example $recipient_array = array('Webformular' => 'mail@MyDomain.ch');

  



FORM-ADJUSTMENTS (formmail.html):
=================================

Mandatory form-fields:
======================

Below is a list of form fields you can use and how to implement them. 
All fields listed below need to be added to an HTML form that you create or 
use our sample. 

Field:       recipient

Description: This form field allows you to specify to whom you wish for your
	     form results to be mailed. Most likely you will want to configure
  	     this option as a hidden form field with a value equal to that
             of your e-mail address.


Syntax:      <input type=hidden name="recipient" value="Webformular">
               

-----------------------------------------------------------------------------


Optional form-fields:
=====================



Field:       required

Description: You can now require for certain fields in your form to be filled in 
             before the user can successfully submit the form. Simply place all 
             field names that you want to be mandatory into this field.
             If the required fields are not filled in, the user will 
             be notified of what they need to fill in, and a link back 
             to the form they just submitted will be provided.


Syntax:      The standard mandatory fields are the following:

             <INPUT TYPE="HIDDEN" NAME="required" VALUE="email, Vorname, Name">
               
-----------------------------------------------------------------------------

Field:       subject

Description: The subject field will allow you to specify the subject that you 
             wish to appear in the e-mail that is sent to you after this form has 
             been filled out

Syntax:      <input type="hidden" name="subject" value="von Web-Formular">

-----------------------------------------------------------------------------

Field:       env_report

Description: This array allows you to define enviromental variables that can be reported

Syntax:
             <input type="hidden" name="env_report" value="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT">

-----------------------------------------------------------------------------


For more information visit:

MANUAL','http://www.boaddrink.com/projects/phpformmail/readme.php');


********
END

    

**********

END Manual
==========