A PHP Произошла ошибка Уровень серьезности: 8192 Сообщение: idn_to_ascii () - PullRequest
0 голосов
/ 19 июня 2020

A PHP Произошла ошибка Уровень серьезности: 8192

Сообщение: idn_to_ascii (): INTL_IDNA_VARIANT_2003 устарело

Имя файла: библиотеки / электронная почта. php

Строка Номер: 1865

Отслеживание:

Файл: /home1/public_html/projects/newpro/application/controllers/Welcome.php Строка: 174 Функция: отправить

Файл : /home1/public_html/projects/newpro/index.php Строка: 315 Функция: require_once

------- Я изменил свои библиотеки, но изменений не обнаружено

- ------- Это мой контроллер / добро пожаловать. php код

public function  contactmail() {
    $this->load->helper(array('form'));
    $this->load->library(array('session','email'));
    $this->load->helper('string');
    //$nwdb['wen_memid']        = $wen_memid         
='W'.random_string('alnum',3).'E'.random_string('alnum',3).'N';
 $name      = $this->input->post('name');

 $email         = $this->input->post('email');
 $subject   = $this->input->post('subject');
 $message   = $this->input->post('message');


    $config['protocol'] = 'sendmail';
    $config['mailpath'] = '/usr/sbin/sendmail';
    $config['charset'] = 'iso-8859-1';
    $config['wordwrap'] = TRUE;
    $config['mailtype'] = 'html';

    $this->email->initialize($config);
    $this->email->from('mail@gmail.com');
    $this->email->to('bn@gmail.com'); 
    $this->email->subject('Contact Us');
    $this->email->message('<html>
        <head>
        </head>
        <body>
                <H2>Contact Us</H2><br>
                <img src="">
                <table rules="all" style="border:1px solid #7fb341;" cellpadding="0">
                <tr style="background:#cddfb7;">
                <td> <strong>Name: </strong></td><td> '.$name.'</td></tr>
                <tr style="background:#cddfb7;">

                <td> <strong> Email: </strong></td><td> '.$email.'</td></tr>
                <tr style="background:#cddfb7;"><td><strong>Subject :</strong></td> 
<td>'.$subject.'</td></tr>
                <tr style="background:#cddfb7;"><td><strong>Message:</strong></td> 

'. $ Message.'

        </html>
        '); 
    $this->email->send();

} 
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...