Cant send email...AGAIN

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.

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](< base_url >/applications/core/interface/file/attachment.php?id=1601)

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]

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

What is your website addres ? and to confirm did any errors come up ?

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

Can you please post your website address ? I will return home Tuesday I will have a look at it then

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.

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";
   ?>