Hi Ben
This time last week we had a bushfire out of control and this week we have flooding throughout the State. Fortunately the fire is now out. Where are you based?
The php content is:
<?php
$name = $_Post('name');
$email_address = $_Post('email_address');
$message = $_Post ('message');
$to = "paul@dreamaustralia.com.au";
$subject = "New Inquiry";
mail ($to, $subject, $message, "From: " . $name);
echo "Thankyou for your message";
?>
Thanks again Paul