I've used this tutorial as a base, but when I send the message via email (using PHP) it appears as sending server io.wv.pt
.
Example 1:
Example2:
PHP code:
<?php
if (isset($_POST['postsubmit'])) {
mail($_POST['to'], $_POST['subject'] , $_POST['mensagem'], 'From: ' .$_POST['email']);
echo 'sent';
echo $_POST['mensagem'];
}
?>
How do I fix this?