Dextercai Posted February 21, 2016 Report Share Posted February 21, 2016 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. Quote Link to comment Share on other sites More sharing options...
Members Vangelis Posted February 21, 2016 Members Report Share Posted February 21, 2016 Upload this to your modules folder and then go to this link www.yourwebsite.com/phpvms/action.php/mailtest this is a script where it will try to send me a test email if it fails for some reason it will display an error. Please post that error here . mailtest.zip Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted February 21, 2016 Moderators Report Share Posted February 21, 2016 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 "info@yourairline.com" Quote Link to comment Share on other sites More sharing options...
Dextercai Posted February 21, 2016 Author Report Share Posted February 21, 2016 Upload this to your modules folder and then go to this link www.yourwebsite.com/phpvms/action.php/mailtest this is a script where it will try to send me a test email if it fails for some reason it will display an error. Please post that error here . well l have try it. it display some errors, but now it have nothing, but l see the file, it will echo something if it send success... so fail again Quote Link to comment Share on other sites More sharing options...
Members Vangelis Posted February 21, 2016 Members Report Share Posted February 21, 2016 What is your website addres ? and to confirm did any errors come up ? Quote Link to comment Share on other sites More sharing options...
Dextercai Posted February 27, 2016 Author Report Share Posted February 27, 2016 Upload this to your modules folder and then go to this link www.yourwebsite.com/phpvms/action.php/mailtest this is a script where it will try to send me a test email if it fails for some reason it will display an error. Please post that error here . If I use the default mail function. it says Could not instantiate mail function. and the smtp function just says please auth and ehlo first Quote Link to comment Share on other sites More sharing options...
Members Vangelis Posted February 27, 2016 Members Report Share Posted February 27, 2016 Can you please post your website address ? I will return home Tuesday I will have a look at it then Quote Link to comment Share on other sites More sharing options...
Dextercai Posted February 27, 2016 Author Report Share Posted February 27, 2016 Can you please post your website address ? I will return home Tuesday I will have a look at it then ok it‘s ypf.fscya.com since l am chinese so... maybe you should use some translate software. Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted February 28, 2016 Administrators Report Share Posted February 28, 2016 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"; ?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.