PHP Code:
print "<meta http-equiv=\"refresh\" content=\"0;URL='http://www.friddbuilding.co.nz/contactsuccess.html'\">";
You could have corrected this by comparing it to your other examples
meta, refresh is a
legacy method and use of
header() to re-direct is preferred.
BTW All that '$Body .=' is inefficient/a little messy - it could be constructed in fewer lines:
PHP Code:
$Body = "Name: $Name\n"; // etc.
$Body .= "Tel: $Tel\n";
or one or two bigger lines.
Added: And you should remove, or use fake, email addresses in your posted-code.