Results 1 to 4 of 4

Thread: my server request SMTP authentication required to send email

  1. #1
    cegerxwinn is offline Registered User
    Join Date
    Apr 2003
    Posts
    10

    Default my server request SMTP authentication required to send email

    Hello

    my server request SMTP authentication required to send email. I use indexu 3.0. How I solve this problem?


    thanks...

  2. #2
    dody is offline Administrator
    Join Date
    Aug 2001
    Location
    Indonesia
    Posts
    3,731

    Default

    indexu doesn't use smtp to send email. It use mail() function, then the global setting of php will handle it whenever it use sendmail or smtp
    www.nicecoder.com
    www.dodyrw.com

  3. #3
    cegerxwinn is offline Registered User
    Join Date
    Apr 2003
    Posts
    10

    Default this my server message

    hi dody,

    How I include indexu script?
    my server message is ;

    **********php
    To send email from php you may use phpMailer. You may download it from http://support.resellerguru.com/downloads/phpmailer.zip.
    You should extract archive and put file phpmailer.php in the same directory as your script.
    Next you should use following code to send email instead of mail() function.



    require("phpmailer.php");
    $mail = new PHPMailer();

    $mail->IsSMTP();
    $mail->Host = "MAIL.DOMAIN.COM";
    $mail->SMTPAuth = true;
    $mail->Username = "POP3ACCOUNT.NAME";
    $mail->Password = "POP3.PASSWORD";

    $mail->From = "POP3ACCOUNT.NAME";
    //$mail->FromName = "Mailer";//optional from name
    $mail->AddAddress("RECIPIENT", "RECIPIENT'S NAME");
    //$mail->AddReplyTo("sender@example.com", "Information");
    $mail->IsHTML(false); // set email format to HTML

    $mail->Subject = "SUBJECT";
    $mail->Body = "BODY";
    if(!$mail->Send()) {
    echo "Message could not be sent. <p>";
    echo "Mailer Error: " . $mail->ErrorInfo;
    }

  4. #4
    dody is offline Administrator
    Join Date
    Aug 2001
    Location
    Indonesia
    Posts
    3,731

    Default

    I'm sorry we no longer provide support for indexu 3.x. Please update to the latest version.

    I suggest to ask your webhost provider to make correction in their php.ini configuration. If it set properly then i'm sure indexu 3.x will run well, this is because indexu use native php function to send email.
    www.nicecoder.com
    www.dodyrw.com

Similar Threads

  1. Mailing list subscription send-out
    By alfo in forum v5.x
    Replies: 1
    Last Post: 02-15-2006, 06:50 AM
  2. Send Resource ID to webmasters?
    By wezman in forum v5.x
    Replies: 3
    Last Post: 07-21-2004, 04:34 AM
  3. no mail is send by Indexu Lite...
    By ms70 in forum v5.x
    Replies: 0
    Last Post: 04-01-2004, 10:44 AM
  4. Replies: 0
    Last Post: 09-20-2002, 11:13 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •