Ah ok my apologies, you may now understand how little I currently know about this language! Below is the PHP, saved in a file called "thankyou.php".
PHP Code:
<?
$name = $_POST['fullname'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$website = $_POST['website'];
$message = $_POST['message'];
$email_message = "
Name: ".$name."
Email: ".$email."
Subject: ".$subject."
Website: ".$website."
Message: ".$message."
";
mail('enhancedigital@gmail.com' , 'New Enquiry' , $email_message);
header('location: email_success.php');
?>
This code is linked to the form on the page I linked to in my first post, with the form code looking like this:
<form action="thankyou.php" method="post">
<table width="424" id="formtable">
<tr>
<td width="219" style="text-align:center">Name:</td>
<td width="193" height="50">
<input type="text" name="fullname">
</td>
</tr>
<tr>
<td style="text-align:center">Email Address:</td>
<td height="50"><input type="text" name="email"></td>
</tr>
<tr>
<td style="text-align:center">Subject:</td>
<td height="50"><input type="text" name="subject"></td>
</tr>
<tr>
<td style="text-align:center">Your Current Website Address:<br /> (if available)</td>
<td height="50"><input type="text" name="website"></td>
</tr>
<tr>
<td height="100" style="text-align:center">Message:</td>
<td><textarea name="message" cols="30" rows="5"></textarea></td>
</tr>
</table>
<div align="center" style="margin-top:20px;">
<input type="submit" value="Submit">
</div>
</form>
If there is any other information I need to post, let me know.
Many Thanks!