Thanks. Another question, not really related but I didnt think it is worth creating another thread for. If I've got a form which an email will be sent in return saying "Thank you for completing the form, we will be in touch shortly" when the form has been submitted, is it possible to include images to my email? I'm wanting my email to include a header and footer image which I would like to style so I can align text etc, be it in a table or whatever. Can this be done and how? Basic email form below. $emailAddress is a variable which I've used in the form to capture the users email address.
<?php
$to = "$emailAddress";
$subject = "Thankyou for completing our form";
$message = "Thank you for completing the form, we will be in touch shortly";
$from = "me@example.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>