I think this is a serious problem. I have been unable to send mail since l first install it.
The problems of more terrible now. I found that no matter how I set, it always displays success.
If I use smtp, no log files indicate that sent the email, login in the smtp.
About mail server,I tried using anonymous mode,But still not effective.
If I use another mode. l cant find any logs path about the send mail.
ps:I use win08, php5.3.
What email address did u use when you first installed phpVMS? If you used yahoo or gmail then that’s where the problem comes. You’ll need to use an email address from your server like “[email protected]”
Try creating a stand alone php file and see if you can simply send an email. If you can not from a simple script then it is something on the server end, not phpVMS.
<?php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "emailtest@YOURDOMAIN";
$to = "YOUREMAILADDRESS";
$subject = "PHP Mail Test script";
$message = "This is a test to check the PHP Mail functionality";
$headers = "From:" . $from;
mail($to,$subject,$message, $headers);
echo "Test email sent";
?>