0
I’ve been using this tutorial as base, but when sending the message by email (using PHP) appears as sending server io.wv.pt
.
Example 1:
Example 2:
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?
I already solved. But left no link to the question.
– lemario
meant on the link indicated as duplicate: http://answall.com/questions/118364/gmail-displayinghost-de-origem-no-destinat%C3%a1rio-quando-uso-mail-do-php
– Bacco
You’re right. You can delete this one. But I’m going to ask another question because by solving my problems I think I can help other people who want to send emails.
– lemario
It is better not to eliminate, so whoever looks for one or the other. This is precisely the idea of marking as duplicate. More of a way to find the information. Thus, formulated in two different ways, the solutions have more chance to be found.
– Bacco
Okay. Thanks just the same :)
– lemario