I have tried the following (which is obviously wrong cos it only returns the address bit by e-mail) and I'd appreciate a pointer in the right direction:
<?php
$to = "rupertbj@tiscali.co.uk";
$subject = "email submission from rancone.co.uk";
$content = array ( $title, $name, $surname, $phone, $address );
foreach ( $content as $val )
{
print "$val<br>";
}
mail( $to, $subject, $val, "$email\r\nX-priority: 1 (Highest)" ) or print "Error handling message. message not sent.";
?>
Thanks in advance for your help!
Rupert