I'm trying to create a page that sends emails but I'm not getting them ...
Would you have something to check?
Here is the code I use to send ...
<?php
$message = "Testando outros remetentes, para facilitar a resposta";
$headers = 'From: [email protected]';
if (mail('[email protected]', 'Teste', $message, $headers)) {
print('Funcionou');
}else{
print('Nao Funcionou...');
};
?>
Should this FROM email be registered on my hosting panel server or can I use a generic?