Вопрос по отправке писем

Discussion in 'PHP' started by kdk, 18 Nov 2009.

  1. kdk

    kdk Elder - Старейшина

    Joined:
    8 Nov 2006
    Messages:
    112
    Likes Received:
    5
    Reputations:
    -3
    Есть в инете дофига примеров на php по отправке писем. типа
    <?php
    $to = "Mary &lt;[email protected]>, " ;
    $subject = "Birthday Reminders for August";

    $message = '
    <html>
    <head>
    <title>Birthday Reminders for August</title>
    </head>
    <body>
    <p>Here are the birthdays upcoming in August!</p>
    </body>
    </html>';

    $headers = "Content-type: text/html; charset=windows-1251 \r\n";
    $headers .= "From: Birthday Reminder <[email protected]>\r\n";
    $headers .= "Bcc: [email protected]\r\n";

    mail($to, $subject, $message, $headers);
    ?>
    Я пробывал их на yandex.ru их блокирует или до него не доходит я хз! можете подсказать как можно отправлять письма нормально?
    Зарание спс
     
  2. b3

    b3 Banned

    Joined:
    5 Dec 2004
    Messages:
    2,170
    Likes Received:
    1,155
    Reputations:
    202
    http://ua2.php.net/manual/en/mail.requirements.php
     
Loading...
Similar Threads - Вопрос отправке писем
  1. GAiN
    Replies:
    3
    Views:
    7,634