Редактирование форм уведомлений почты

Тема в разделе "Общие вопросы", создана пользователем snapius, 10 апр 2016.

  1. snapius

    snapius Пользователь

    Сообщения:
    144
    Симпатии:
    1
    А я вчера в этом файле ковырялся и не получалось сделать, но я менял с $mail->setText($text); на $mail->setHtml($message);, наверно изза этого не срабатывало :(
     
  2. Ален

    Ален Эксперт

    Сообщения:
    2.056
    Симпатии:
    641
    если меняете на $message
    то в ней должно содержаться полная разметка html
    переключателя "хочу все письма в html " в системе нет!!
     
  3. snapius

    snapius Пользователь

    Сообщения:
    144
    Симпатии:
    1
    Хоть убейте не могу сделать, делаю как Вы сказали и все равно идет текстом, а не html и соответственно не воспринимает html код типа <br>.

    Вот код файла, подскажите пожалуйста что не так сделал?

    Код:
                        // Text
                        $text  = $language->get('text_new_received') . "\n\n";
                        $text .= $language->get('text_new_order_id') . ' ' . $order_id . "\n";
                        $text .= $language->get('text_new_date_added') . ' ' . date($language->get('date_format_short'), strtotime($order_info['date_added'])) . "\n";
                        $text .= $language->get('text_new_order_status') . ' ' . $order_status . "\n\n";
                        $text .= $language->get('text_new_products') . "\n";
    
                        foreach ($order_product_query->rows as $product) {
                            $text .= $product['quantity'] . 'x ' . $product['name'] . ' (' . $product['model'] . ') ' . html_entity_decode($this->currency->format($product['total'] + ($this->config->get('config_tax') ? ($product['tax'] * $product['quantity']) : 0), $order_info['currency_code'], $order_info['currency_value']), ENT_NOQUOTES, 'UTF-8') . "\n";
    
                            $order_option_query = $this->db->query("SELECT * FROM " . DB_PREFIX . "order_option WHERE order_id = '" . (int)$order_id . "' AND order_product_id = '" . $product['order_product_id'] . "'");
    
                            foreach ($order_option_query->rows as $option) {
                                if ($option['type'] != 'file') {
                                    $value = $option['value'];
                                } else {
                                    $value = utf8_substr($option['value'], 0, utf8_strrpos($option['value'], '.'));
                                }
    
                                $text .= chr(9) . '-' . $option['name'] . ' ' . (utf8_strlen($value) > 20 ? utf8_substr($value, 0, 20) . '..' : $value) . "\n";
                            }
                        }
    
                        foreach ($order_voucher_query->rows as $voucher) {
                            $text .= '1x ' . $voucher['description'] . ' ' . $this->currency->format($voucher['amount'], $order_info['currency_code'], $order_info['currency_value']);
                        }
    
                        $text .= "\n";
    
                        $text .= $language->get('text_new_order_total') . "\n";
    
                        foreach ($order_total_query->rows as $total) {
                            $text .= $total['title'] . ': ' . html_entity_decode($this->currency->format($total['value'], $order_info['currency_code'], $order_info['currency_value']), ENT_NOQUOTES, 'UTF-8') . "\n";
                        }
    
                        $text .= "\n";
    
                        if ($order_info['comment']) {
                            $text .= $language->get('text_new_comment') . "\n\n";
                            $text .= $order_info['comment'] . "\n\n";
                        }
    
                        $mail = new Mail();
                        $mail->protocol = $this->config->get('config_mail_protocol');
                        $mail->parameter = $this->config->get('config_mail_parameter');
                        $mail->smtp_hostname = $this->config->get('config_mail_smtp_hostname');
                        $mail->smtp_username = $this->config->get('config_mail_smtp_username');
                        $mail->smtp_password = html_entity_decode($this->config->get('config_mail_smtp_password'), ENT_QUOTES, 'UTF-8');
                        $mail->smtp_port = $this->config->get('config_mail_smtp_port');
                        $mail->smtp_timeout = $this->config->get('config_mail_smtp_timeout');
    
                        $mail->setTo($this->config->get('config_email'));
                        $mail->setFrom($this->config->get('config_email'));
                        $mail->setSender(html_entity_decode($order_info['store_name'], ENT_QUOTES, 'UTF-8'));
                        $mail->setSubject(html_entity_decode($subject, ENT_QUOTES, 'UTF-8'));
                        $mail->setHtml($this->load->view('mail/order', $data));
                        $mail->setHtml($text);
                        $mail->send();
    
                        // Send to additional alert emails
                        $emails = explode(',', $this->config->get('config_mail_alert'));
    
                        foreach ($emails as $email) {
                            if ($email && filter_var($email, FILTER_VALIDATE_EMAIL)) {
                                $mail->setTo($email);
                                $mail->send();
                            }
                        }
                    }
                }
    
                // If order status is not 0 then send update text email
                if ($order_info['order_status_id'] && $order_status_id && $notify) {
                    $language = new Language($order_info['language_code']);
                    $language->load($order_info['language_code']);
                    $language->load('mail/order');
    
                    $subject = sprintf($language->get('text_update_subject'), html_entity_decode($order_info['store_name'], ENT_QUOTES, 'UTF-8'), $order_id);
    
                    $message  = $language->get('text_update_order') . ' ' . $order_id . "\n";
                    $message .= $language->get('text_update_date_added') . ' ' . date($language->get('date_format_short'), strtotime($order_info['date_added'])) . "\n\n";
    
                    $order_status_query = $this->db->query("SELECT * FROM " . DB_PREFIX . "order_status WHERE order_status_id = '" . (int)$order_status_id . "' AND language_id = '" . (int)$order_info['language_id'] . "'");
    
                    if ($order_status_query->num_rows) {
                        $message .= $language->get('text_update_order_status') . "\n\n";
                        $message .= $order_status_query->row['name'] . "\n\n";
                    }
    
                    if ($order_info['customer_id']) {
                        $message .= $language->get('text_update_link') . "\n";
                        $message .= $order_info['store_url'] . 'index.php?route=account/order/info&order_id=' . $order_id . "\n\n";
                    }
    
                    if ($comment) {
                        $message .= $language->get('text_update_comment') . "\n\n";
                        $message .= strip_tags($comment) . "\n\n";
                    }
    
                    $message .= $language->get('text_update_footer');
    
                    $mail = new Mail();
                    $mail->protocol = $this->config->get('config_mail_protocol');
                    $mail->parameter = $this->config->get('config_mail_parameter');
                    $mail->smtp_hostname = $this->config->get('config_mail_smtp_hostname');
                    $mail->smtp_username = $this->config->get('config_mail_smtp_username');
                    $mail->smtp_password = html_entity_decode($this->config->get('config_mail_smtp_password'), ENT_QUOTES, 'UTF-8');
                    $mail->smtp_port = $this->config->get('config_mail_smtp_port');
                    $mail->smtp_timeout = $this->config->get('config_mail_smtp_timeout');
    
                    $mail->setTo($order_info['email']);
                    $mail->setFrom($this->config->get('config_email'));
                    $mail->setSender(html_entity_decode($order_info['store_name'], ENT_QUOTES, 'UTF-8'));
                    $mail->setSubject(html_entity_decode($subject, ENT_QUOTES, 'UTF-8'));
                    $mail->setHtml($message);
                    $mail->send();
                }
            }
        }
    }
    
     
  4. Ален

    Ален Эксперт

    Сообщения:
    2.056
    Симпатии:
    641
    я не вижу где вы хотите сделать. точнее не вижу попыток.
     
  5. snapius

    snapius Пользователь

    Сообщения:
    144
    Симпатии:
    1
    Я исправил с $mail->setText($text); на $mail->setHtml($text); или это не то?
     
  6. Ален

    Ален Эксперт

    Сообщения:
    2.056
    Симпатии:
    641
    ну я же написал вам, что вы должны передать в переменную код html с разметкой.
    Как будите ее передавать уже другой вопрос. Можно из языкловых файлов, из кода, из шаблона. Посмотрите пример где в переменной html есть код. И так же написал, что волшебного переключателя НЕТ, а вы все про его ждете!!