IMAP hesabı PHP e-posta

0 Cevap php

Ben web sitesi sahibi için bir web sitesinden bir e-posta göndermek için PHPMailer kullanıyorum. Bazı adresler (örneğin Gmail hesabı) için çalışıyor, ve sahibinin adresine çalışmak için kullanılan, ama son zamanlarda POP IMAP ve şimdi o web sitesinden gelen e-postaları almaz değişti. O, diğer kaynaklardan gelen e-postaları almak gelmez. Bu kodu:

    $mail = new PHPMailer(true);    

    try {  
          $mail->AddAddress($to, 'Example To');
          $mail->SetFrom('example@example.com', 'Example');
          $mail->AddReplyTo('example@example.com', 'Example');
          $mail->Subject = $subject;
          $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically
          $mail->MsgHTML($message);
          $mail->Send();
          //echo "Message Sent OK</p>\n";
        } catch (phpmailerException $e) {
          echo $e->errorMessage(); //Pretty error messages from PHPMailer
        } catch (Exception $e) {
          echo $e->getMessage(); //Boring error messages from anything else!
        }

Any advice much appreciated. Thanks! G

0 Cevap