Installation

Assuming that you already have unpacked the script files please follow these step-by-step instructions.

Step 1

Open the file /templates/mail.tpl.txt]] in a text editor. Enter your e-mail address in the head of the file where it says To:

To: your-e-mail@example.com

Replace your-e-mail@example.com with your own e-mail address.

You can also add your name, but it is important that you enclose the name by double quotes (") and the e-mail by angle quotes (< and >):

To: "First name Last name" <your-e-mail@example.com>

You can now save the file and close it.

Step 2

Create a subfolder on your server (e.g. /mail/ or /contact/). Copy all script files into the new folder on your server. It is important that you upload all files, folders and sub-folders to your server. It is also important that the original file and folder structure remains intact.

All files have to be uploaded in text mode (ASCII mode) except for the font file(s) in the folder /inc/font/. The font file daft.ttf has to be transferred in binary mode. Most FTP programs have the option to set the mode to Automatic. With the mode set to Automatic you won't have to worry about it..

Step 3

After you have uploaded the files you can call the URL of the script in your browser, e.g.:

http://www.example.com/contact/index.php

The script is now ready for you to test. Fill in the fields and send the form.

Step 4

Check your e-mail account for new mails. You should be a bit patient. It may take a couple minutes until the e-mail arrives into your e-mail account.

Should you not receive any e-mails even after quite some time, start again with step 1 and try several different e-mail addresses.

In case that is not successful either, you should test if your server is capable of sending e-mails at all. Create a PHP file mailtest.php with following content:

<?php

  mail('your-e-mail@example.com', 'Test Subject', 'Test Message');

?>

Upload that file to your server and call the URL of it in your browser. In the rare event that this does not work, you should contact your web host.