Easy PHP Mailing script
Created by Dave Wilde
dave@anynet.co.uk
Copyright 2007 ©Dave Wilde
This software is released under the terms of the GNU General Public License
as published by
the Free Software Foundation; version 3 of the License.
It is distributed in the hope that it will be useful,
but
WITHOUT ANY WARRANTY; without any implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
www.gnu.org/licenses
This distribution contains: 4 files
1. readme.htm; This file.
2. mailprocess.php; The script engine.
3. thanks.htm; a confirmation page. you should add your template to this page.
4. gpl.tx; GNU GPL licence file.
The first thing you must do is open the mailprocess.php script and edit the variables in the top section to match your details.
Be careful to only change the relavent part of each line and save it when done.
Decide where you will put the php script in your website and upload it.
Edit the action tag attribute in your form to the full http path or the relative path of the mailprocess.php script.
I.E if the script was on yoursite.com in a subfolder called scripts then you could use an absolute path of;
<form method="post" action="http://www.yoursite.com/scripts/mailprocess.php">
or if your form was in the root of the website you could use a document relative path of;
<form method="post" action="scripts/mailprocess.php">
Note:
Make sure the validation names are correct (these are case sensative).
See the mailprocess.php file for a more detailed explanation.

