Hey,
I'm having problems getting an html form to submit via the following php script - what do i need to insert into $message to display the contents of the form? i'm using text inputs, like 'name', 'city', 'zip code' etc.
<?php
// Mail Info
$to = "Recipient <someone@sender.com>";
$subject = "CV Application";
$headers .= "From: Sender <user@user.com>\r\n";
// Content Type-Header
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
// Form
$message = '
';
// Email Function
mail($to, $subject, $message, $headers);
?>