mail() - very slow (sory for previous post)

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

    mail() - very slow (sory for previous post)

    Hello

    Sorry for my previous post (forget to change language)

    I use mail().
    Postfix configured locally - properly - works fine and fast.
    But when i use mail() it's processed about 60 seconds.
    After that mail is delivered properly.

    But - why so slow ???

    Thanx
  • Tyno Gendo

    #2
    Re: mail() - very slow (sory for previous post)

    vertigo wrote:
    Hello
    >
    Sorry for my previous post (forget to change language)
    >
    I use mail().
    Postfix configured locally - properly - works fine and fast.
    But when i use mail() it's processed about 60 seconds.
    After that mail is delivered properly.
    >
    But - why so slow ???
    >
    Thanx
    Are you using the optional "Headers" section of the mail command? I've
    had some servers that refuse to send mail without a specified From:
    address in the mail command, try setting your valid From address and see
    if it helps.

    eg. as in the PHP manual:

    <?php
    $to = 'nobody@example .com';
    $subject = 'the subject';
    $message = 'hello';
    $headers = 'From: webmaster@examp le.com' . "\r\n" .
    'Reply-To: webmaster@examp le.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

    mail($to, $subject, $message, $headers);
    ?>

    Comment

    Working...