hy,
i don't have acess to the server, i mean i can't execute command line :
php -f pathtoscript
but i try to complete the headers of function mail:
#!/usr/local/bin/php
<?php
$to = 'nelson@estudoplase.pt';
$subject = 'the subject';
$message = 'hello test.';
$headers = 'From: [email]webmaster@euseiiii.pt[/email]' . "\r\n" .
'Reply-To: nelnels <webmaster@eusei.com.pt>' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
if (mail($to, $subject, $message, $headers)) {
echo "<h4>Thank you for sending email</h4>";
} else {
echo "<h4>Can't send email to $email</h4>";
}
?>
but a still received like spam :o
(sorry its a little long :bemused: )
Spam detection software, running on the system "gauguin.netcanvas.com", has
identified this incoming email as possible spam. The original message
has been attached to this so you can view it (if it isn't spam) or label
similar future email. If you have any questions, see
the administrator of that system for details.
Content preview: hello test. [...]
Content analysis details: (5.4 points, 5.0 required)
pts rule name description
---- ---------------------- --------------------------------------------------
1.0 NO_REAL_NAME From: does not include a real name
-2.6 BAYES_00 BODY: Bayesian spam probability is 0 to 1%
[score: 0.0001]
1.7 DNS_FROM_RFC_POST RBL: Envelope sender in
postmaster.rfc-ignorant.org
2.6 DNS_FROM_RFC_DSN RBL: Envelope sender in dsn.rfc-ignorant.org
2.8 RCVD_IN_NJABL_SPAM RBL: NJABL: sender is confirmed spam source
[194.65.3.163 listed in combined.njabl.org]
-----------------------------------------------------------------------------------------------------
and i receive always the same return value of FALSE when i send, always same message in browser
Can't send email to .
I real don't know what to do :bemused: