Xampp + Mail

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bala

    Xampp + Mail

    Hi Experts,

    I'm using Xampp control for php and
    i set the smtp configuration in php.ini as

    SMTP=mail.domai nserver.com
    smtp_port=25

    but still i got an error like this.


    Warning: mail() [function.mail]: SMTP server response: 503 This mail
    server requires authentication when attempting to send to a non-local
    e-mail address. Please check your mail client settings or contact your
    administrator to verify that the domain or address is defined for this
    server. in C:\xampp\htdocs \epsylonpes\tes t.php on line 7

    and on test.php file

    <?php
    $mail_to = "test@gmail.com ";
    $mail_from= "test@yahoo.com ";
    $subject = "Testing";
    $body = "Testing Mail for Xampp";
    $headers = "Return-Path: $mail_from\nFro m: $mail_from\nX-Mailer:
    PHPmail";
    $success = mail($mail_to, $subject, $body, $headers );
    if ($success){
    echo $success ;
    }
    else{
    echo "Failure";
    }
    ?>
Working...