Jump to content

cant send email...AGAIN


Dextercai

Recommended Posts

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.

Link to comment
Share on other sites

  • Moderators

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"

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

  • Administrators

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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...