tr-opencart

     
avatar Şuanki Zaman: 04-19-2024, 03:15 AMHoşgeldin Misafir !
  Şifremi Hatırlat   kayıt ol
opencart temaları

Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi

Konuyu görüntüleyenler: 1 Misafir
 
Değerlendir:
  • 0 Oy - 0 Yüzde
  • 1
  • 2
  • 3
  • 4
  • 5
%
Cevapla  Gönder 
v  v
Yazar  e-ticaretdersleri - Görüntüleme - Okunma  7419 - Yorum  9

turkojen34v
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 169
Konular: 13
Katılma Tarihi: Jun 2013
Rep Puanı: 0
Teşekkürler: 18
16 Mesajına, 20 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 06-18-2018 05:30 PM
Merhabalar beim sitede 2.1.0.1 versiyon.Sipariş verildiğinde ve yorum yapıldığında mail geliyor fakat iletişim bölümünden mail atıldığında beyaz sayfa geliyor hata loglarında

2018-06-18 17:24:27 - PHP Notice: Error: DATA not accepted from server! in /abc.com/system/library/mail.php on line 418

mail.php içeriği nasıl düzeltebilirim

PHP Kod:
<?php
class Mail {
    protected 
$to;
    protected 
$from;
    protected 
$sender;
    protected 
$reply_to;
    protected 
$subject;
    protected 
$text;
    protected 
$html;
    protected 
$attachments = array();
    public 
$protocol 'mail';
    public 
$smtp_hostname;
    public 
$smtp_username;
    public 
$smtp_password;
    public 
$smtp_port 25;
    public 
$smtp_timeout 5;
    public 
$newline "\n";
    public 
$verp false;
    public 
$parameter '';

    public function 
__construct($config = array()) {
        foreach (
$config as $key => $value) {
            
$this->$key $value;
        }
    }

    public function 
setTo($to) {
        
$this->to $to;
    }

    public function 
setFrom($from) {
        
$this->from $from;
    }

    public function 
setSender($sender) {
        
$this->sender $sender;
    }

    public function 
setReplyTo($reply_to) {
        
$this->reply_to $reply_to;
    }

    public function 
setSubject($subject) {
        
$this->subject $subject;
    }

    public function 
setText($text) {
        
$this->text $text;
    }

    public function 
setHtml($html) {
        
$this->html $html;
    }

    public function 
addAttachment($filename) {
        
$this->attachments[] = $filename;
    }

    public function 
send() {
        if (!
$this->to) {
            
trigger_error('Error: E-Mail to required!');
            exit();
        }

        if (!
$this->from) {
            
trigger_error('Error: E-Mail from required!');
            exit();
        }

        if (!
$this->sender) {
            
trigger_error('Error: E-Mail sender required!');
            exit();
        }

        if (!
$this->subject) {
            
trigger_error('Error: E-Mail subject required!');
            exit();
        }

        if ((!
$this->text) && (!$this->html)) {
            
trigger_error('Error: E-Mail message required!');
            exit();
        }

        if (
is_array($this->to)) {
            
$to implode(','$this->to);
        } else {
            
$to $this->to;
        }

        
$boundary '----=_NextPart_' md5(time());

        
$header 'MIME-Version: 1.0' $this->newline;

        if (
$this->protocol != 'mail') {
            
$header .= 'To: ' $to $this->newline;
            
$header .= 'Subject: =?UTF-8?B?' base64_encode($this->subject) . '?=' $this->newline;
        }

        
$header .= 'Date: ' date('D, d M Y H:i:s O') . $this->newline;
        
$header .= 'From: =?UTF-8?B?' base64_encode($this->sender) . '?=' ' <' $this->from '>' $this->newline;
        
        if (!
$this->reply_to) {
            
$header .= 'Reply-To: =?UTF-8?B?' base64_encode($this->sender) . '?=' ' <' $this->from '>' $this->newline;
        } else {
            
$header .= 'Reply-To: =?UTF-8?B?' base64_encode($this->reply_to) . '?=' ' <' $this->reply_to '>' $this->newline;
        }
        
        
$header .= 'Return-Path: ' $this->from $this->newline;
        
$header .= 'X-Mailer: PHP/' phpversion() . $this->newline;
        
$header .= 'Content-Type: multipart/related; boundary="' $boundary '"' $this->newline $this->newline;

        if (!
$this->html) {
            
$message  '--' $boundary $this->newline;
            
$message .= 'Content-Type: text/plain; charset="utf-8"' $this->newline;
            
$message .= 'Content-Transfer-Encoding: 8bit' $this->newline $this->newline;
            
$message .= $this->text $this->newline;
        } else {
            
$message  '--' $boundary $this->newline;
            
$message .= 'Content-Type: multipart/alternative; boundary="' $boundary '_alt"' $this->newline $this->newline;
            
$message .= '--' $boundary '_alt' $this->newline;
            
$message .= 'Content-Type: text/plain; charset="utf-8"' $this->newline;
            
$message .= 'Content-Transfer-Encoding: 8bit' $this->newline $this->newline;

            if (
$this->text) {
                
$message .= $this->text $this->newline;
            } else {
                
$message .= 'This is a HTML email and your email client software does not support HTML email!' $this->newline;
            }

            
$message .= '--' $boundary '_alt' $this->newline;
            
$message .= 'Content-Type: text/html; charset="utf-8"' $this->newline;
            
$message .= 'Content-Transfer-Encoding: 8bit' $this->newline $this->newline;
            
$message .= $this->html $this->newline;
            
$message .= '--' $boundary '_alt--' $this->newline;
        }

        foreach (
$this->attachments as $attachment) {
            if (
file_exists($attachment)) {
                
$handle fopen($attachment'r');

                
$content fread($handlefilesize($attachment));

                
fclose($handle);

                
$message .= '--' $boundary $this->newline;
                
$message .= 'Content-Type: application/octet-stream; name="' basename($attachment) . '"' $this->newline;
                
$message .= 'Content-Transfer-Encoding: base64' $this->newline;
                
$message .= 'Content-Disposition: attachment; filename="' basename($attachment) . '"' $this->newline;
                
$message .= 'Content-ID: <' basename(urlencode($attachment)) . '>' $this->newline;
                
$message .= 'X-Attachment-Id: ' basename(urlencode($attachment)) . $this->newline $this->newline;
                
$message .= chunk_split(base64_encode($content));
            }
        }

        
$message .= '--' $boundary '--' $this->newline;

        if (
$this->protocol == 'mail') {
            
ini_set('sendmail_from'$this->from);

            if (
$this->parameter) {
                
mail($to'=?UTF-8?B?' base64_encode($this->subject) . '?='$message$header$this->parameter);
            } else {
                
mail($to'=?UTF-8?B?' base64_encode($this->subject) . '?='$message$header);
            }
        } elseif (
$this->protocol == 'smtp') {
            
$tls substr($this->smtp_hostname03) == 'tls';
            
$hostname $tls substr($this->smtp_hostname6) : $this->smtp_hostname;

            
$handle fsockopen($hostname$this->smtp_port$errno$errstr$this->smtp_timeout);

            if (!
$handle) {
                
trigger_error('Error: ' $errstr ' (' $errno ')');
                exit();
            } else {
                if (
substr(PHP_OS03) != 'WIN') {
                    
socket_set_timeout($handle$this->smtp_timeout0);
                }

                while (
$line fgets($handle515)) {
                    if (
substr($line31) == ' ') {
                        break;
                    }
                }

                
fputs($handle'EHLO ' getenv('SERVER_NAME') . "\r\n");

                
$reply '';

                while (
$line fgets($handle515)) {
                    
$reply .= $line;

                    if (
substr($line31) == ' ') {
                        break;
                    }
                }

                if (
substr($reply03) != 250) {
                    
trigger_error('Error: EHLO not accepted from server!');
                    exit();
                }

                if (
$tls) {
                    
fputs($handle'STARTTLS' "\r\n");

                    
$reply '';

                    while (
$line fgets($handle515)) {
                        
$reply .= $line;

                        if (
substr($line31) == ' ') {
                            break;
                        }
                    }

                    if (
substr($reply03) != 220) {
                        
trigger_error('Error: STARTTLS not accepted from server!');
                        exit();
                    }

                    
stream_socket_enable_crypto($handletrueSTREAM_CRYPTO_METHOD_TLS_CLIENT);
                }

                if (!empty(
$this->smtp_username)  && !empty($this->smtp_password)) {
                    
fputs($handle'EHLO ' getenv('SERVER_NAME') . "\r\n");

                    
$reply '';

                    while (
$line fgets($handle515)) {
                        
$reply .= $line;

                        if (
substr($line31) == ' ') {
                            break;
                        }
                    }

                    if (
substr($reply03) != 250) {
                        
trigger_error('Error: EHLO not accepted from server!');
                        exit();
                    }

                    
fputs($handle'AUTH LOGIN' "\r\n");

                    
$reply '';

                    while (
$line fgets($handle515)) {
                        
$reply .= $line;

                        if (
substr($line31) == ' ') {
                            break;
                        }
                    }

                    if (
substr($reply03) != 334) {
                        
trigger_error('Error: AUTH LOGIN not accepted from server!');
                        exit();
                    }

                    
fputs($handlebase64_encode($this->smtp_username) . "\r\n");

                    
$reply '';

                    while (
$line fgets($handle515)) {
                        
$reply .= $line;

                        if (
substr($line31) == ' ') {
                            break;
                        }
                    }

                    if (
substr($reply03) != 334) {
                        
trigger_error('Error: Username not accepted from server!');
                        exit();
                    }

                    
fputs($handlebase64_encode($this->smtp_password) . "\r\n");

                    
$reply '';

                    while (
$line fgets($handle515)) {
                        
$reply .= $line;

                        if (
substr($line31) == ' ') {
                            break;
                        }
                    }

                    if (
substr($reply03) != 235) {
                        
trigger_error('Error: Password not accepted from server!');
                        exit();
                    }
                } else {
                    
fputs($handle'HELO ' getenv('SERVER_NAME') . "\r\n");

                    
$reply '';

                    while (
$line fgets($handle515)) {
                        
$reply .= $line;

                        if (
substr($line31) == ' ') {
                            break;
                        }
                    }

                    if (
substr($reply03) != 250) {
                        
trigger_error('Error: HELO not accepted from server!');
                        exit();
                    }
                }

                if (
$this->verp) {
                    
fputs($handle'MAIL FROM: <' $this->from '>XVERP' "\r\n");
                } else {
                    
fputs($handle'MAIL FROM: <' $this->from '>' "\r\n");
                }

                
$reply '';

                while (
$line fgets($handle515)) {
                    
$reply .= $line;

                    if (
substr($line31) == ' ') {
                        break;
                    }
                }

                if (
substr($reply03) != 250) {
                    
trigger_error('Error: MAIL FROM not accepted from server!');
                    exit();
                }

                if (!
is_array($this->to)) {
                    
fputs($handle'RCPT TO: <' $this->to '>' "\r\n");

                    
$reply '';

                    while (
$line fgets($handle515)) {
                        
$reply .= $line;

                        if (
substr($line31) == ' ') {
                            break;
                        }
                    }

                    if ((
substr($reply03) != 250) && (substr($reply03) != 251)) {
                        
trigger_error('Error: RCPT TO not accepted from server!');
                        exit();
                    }
                } else {
                    foreach (
$this->to as $recipient) {
                        
fputs($handle'RCPT TO: <' $recipient '>' "\r\n");

                        
$reply '';

                        while (
$line fgets($handle515)) {
                            
$reply .= $line;

                            if (
substr($line31) == ' ') {
                                break;
                            }
                        }

                        if ((
substr($reply03) != 250) && (substr($reply03) != 251)) {
                            
trigger_error('Error: RCPT TO not accepted from server!');
                            exit();
                        }
                    }
                }

                
fputs($handle'DATA' "\r\n");

                
$reply '';

                while (
$line fgets($handle515)) {
                    
$reply .= $line;

                    if (
substr($line31) == ' ') {
                        break;
                    }
                }

                if (
substr($reply03) != 354) {
                    
trigger_error('Error: DATA not accepted from server!');
                    exit();
                }

                
// According to rfc 821 we should not send more than 1000 including the CRLF
                
$message str_replace("\r\n""\n"$header $message);
                
$message str_replace("\r""\n"$message);

                
$lines explode("\n"$message);

                foreach (
$lines as $line) {
                    
$results str_split($line998);

                    foreach (
$results as $result) {
                        if (
substr(PHP_OS03) != 'WIN') {
                            
fputs($handle$result "\r\n");
                        } else {
                            
fputs($handlestr_replace("\n""\r\n"$result) . "\r\n");
                        }
                    }
                }

                
fputs($handle'.' "\r\n");

                
$reply '';

                while (
$line fgets($handle515)) {
                    
$reply .= $line;

                    if (
substr($line31) == ' ') {
                        break;
                    }
                }

                if (
substr($reply03) != 250) {
                    
trigger_error('Error: DATA not accepted from server!');
                    exit();
                }

                
fputs($handle'QUIT' "\r\n");

                
$reply '';

                while (
$line fgets($handle515)) {
                    
$reply .= $line;

                    if (
substr($line31) == ' ') {
                        break;
                    }
                }

                if (
substr($reply03) != 221) {
                    
trigger_error('Error: QUIT not accepted from server!');
                    exit();
                }

                
fclose($handle);
            }
        }
    }

Alıntı Yaparak Cevapla
Paylaş!

« Önceki | Sonraki »
Cevapla  Gönder 

Bu Konudaki Mesajlar
RE: Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi - turkojen34 - 06-18-2018 05:30 PM

Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi Konusunun Linki Direk Link
Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi Konusunun HTML Kodu HTML Link
Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi Konusu BBCode Linki BBCode Link
Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi Konusunu Paylaş Sosyal Paylaş

Benzeyen Konular
Konu: Yazar Cevaplar: Gösterim: Son Mesaj
  [Çözüldü] opencart 3.0.2.0 smtp mail sorunu çözümü pegasus 12 23,342 11-26-2023 02:52 AM
Son Mesaj: osmkan
  Opencart Undefined variable: sale hatası ogzhn30 1 1,313 11-28-2021 11:53 PM
Son Mesaj: karimoludeniz
  Opencart 2.0.1.1 Admin sipariş maili gelmiyor barney 8 7,293 11-26-2021 05:04 PM
Son Mesaj: Meek88
  Opencart Yüksek Fiyat Girememe Bekolina 1 1,946 11-14-2020 11:37 AM
Son Mesaj: Kaptan35
Lightbulb mail.php 170 hatası ve mail göndermiyor askural 6 3,704 06-18-2020 07:43 AM
Son Mesaj: askural
  Opencart 3.0.3.2 Üyelik Sorunu thenotorious 1 2,349 03-21-2020 03:12 PM
Son Mesaj: emir28
  Opencart ürünlerde 2. sayfaya geçildiğinde hata almak bsrozguler 4 1,662 10-19-2019 03:34 PM
Son Mesaj: bsrozguler
  Opencart 2.3 Resim ekleyememe Yardim. jestweb 1 1,038 07-29-2019 06:34 PM
Son Mesaj: brstnbl
  opencart 2.3.0.2 header da müşteri adını gösterme denemx 11 3,474 06-25-2019 07:57 PM
Son Mesaj: Kaptan35
  Opencart Kendisi Ürün Ekliyor! korayucan 0 1,127 05-20-2019 12:23 AM
Son Mesaj: korayucan

Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi indir, Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi Videosu, Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi online izle, Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi Bedava indir, Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi Yükle, Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi Hakkında, Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi nedir, Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi Free indir, Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi oyunu, Opencart 2 Mail Smtp Sorunun Kesin Çözümü Makalesi download


Forum Atla: