• 07-10-2015, 00:23:45
    #10
    Üyeliği durduruldu
    Heisenberg23 adlı üyeden alıntı: mesajı görüntüle
    klasörde olmalı hata onu gösteriyor
    ilginc halbuki var

    --R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 00:23:45 -->-> Daha önceki mesaj 00:08:07 --

    Heisenberg23 adlı üyeden alıntı: mesajı görüntüle
    klasörde olmalı hata onu gösteriyor
    The following From address failed: * : Called Mail() without being connected

    en son hata bu
  • 07-10-2015, 11:38:27
    #11
    Alıntı
    Fatal error: Class 'SMTP' not found in /home/kayseri6/public_html/inc/class.phpmailer.php on line 1303
    Phpmailler clasında bir problem olabilir mi güncel bitane daha indirip denermisin.

    $mail = new PHPMailer(); // create a new object
    $mail->IsSMTP(); // enable SMTP
    $mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only
    $mail->SMTPAuth = true; // authentication enabled
    $mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail
    $mail->Host = "smtp.gmail.com";
    $mail->Port = 465; // or 587
    $mail->IsHTML(true);
    $mail->Username = "email@gmail.com";
    $mail->Password = "password";
    $mail->Subject = "Konu";
    $mail->Body = "İçerik";
    $mail->AddAddress("gonderilecek mail");
     if(!$mail->Send())
        {
        echo "Gönderim Hatası: " . $mail->ErrorInfo;
        }
        else
        {
        echo "Gönderildi";
        }
    Bu şekilde bi denermisin.
  • 07-10-2015, 11:45:18
    #12
    tls kullanmalısın.


    $mail->SMTPSecure = "tls";                 // sets the prefix to the servier
    $mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
    $mail->Port       = 587;                   // set the SMTP port for the GMAIL server