Feedbeck jquery helpe
Feedbeck jquery helpe
Hi
i have a contact form like this:
<?php
$mailTo = 'mail@company.com';
$name = htmlspecialchars($_POST['Name']);
$mailFrom = htmlspecialchars($_POST['Email']);
$telefon = htmlspecialchars($_POST['Telefon']);
$adresse = htmlspecialchars($_POST['Adresse']);
$subject = htmlspecialchars($_POST['Subject']);
$message_text = htmlspecialchars($_POST['Message']);
$message = 'Navn: '.$name.' E-post: '.$mailFrom.' Telefon: '.$telefon.' Adresse: '.$adresse.' Melding: '.$message_text;
mail($mailTo, $subject, $message);
?>
But when coming mail to me it is like:

and when I reply to the sender email it does not automate the sending of email, rather type postmaster@website.com.
how can fix it?

And i have problem with ÅØÆ alfabet in mail text ?
here is form code:
<!-- contact-form START here -->
<div id="feedback">
<p class="error wrong_name"> Fyll inn riktig navn</p>
<p class="error wrong_email"> Feil e-post</p>
<p class="error wrong_message"> Skriv inn din melding</p>
</div>
<form action="sendemail.php" id="contact_us" method="post">
<p class="label_name">Navn</p>
<p class="input_form">
<input type="text" name="Name" />
</p>
<p class="label_name">E-post</p>
<p class="input_form">
<input type="text" name="Email" />
</p>
<p class="label_name">Telefon</p>
<p class="input_form">
<input type="text" name="Telefon" />
</p>
<p class="label_name">Adresse</p>
<p class="input_form">
<input type="text" name="Adresse" />
</p>
<p class="label_name">Emne</p>
<p class="input_form">
<input type="text" name="Subject" />
</p>
<p class="label_name">Melding</p>
<p class="input_form" id="textarea">
<textarea name="Message" rows="10" cols="4" id="message_input"></textarea>
</p>
<p id="submit">
<input type="submit" value="Send" name="submitButton" class="button" />
</p>
</form>
<p id="success">Takk. Din melding ble sendt. Vi vil besvare din henvendelse så fort som mulig.</p>
<!-- contact-form END here -->
Thank you for helpe