RE: Sentora for Windows 1.0.0 released!
02-22-2015, 07:49 PM
(This post was last modified: 02-22-2015, 07:54 PM by Miow5.)
Quote:Interesting!
You could, would test your installation of anti-virus program.
Maybe it's some sort of virus?
There is no antivirus yet...
The test script is not working, no message is shown (the email address exists in server):
Code:
<?php
require("class/phpmailer.php");
$mail = new PHPMailer();
$mail->Host = "localhost"; // SMTP server
$mail->Port = 25;
$mail->SMTPAuth = true;
$mail->Username = "aaa@mydomain.com";
$mail->Password = "xxxxxxxxx";
$mail->From = "aaa@mydomain.com";
$mail->AddAddress("aaa@mydomain.com");
$mail->Subject = "no subject";
$mail->Body = "this is a test message";
if(!$mail->Send()) {
echo 'Message was not sent.';
echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent.';
}
?>