Невозможно отправить другой почтовый идентификатор домена с помощью codeigniter - PullRequest
0 голосов
/ 02 марта 2019
<?php

`unable to send other domain mail id using codeigniter`

    $this->load->library('email'); <BR>
    $to = 'otherdomain@example.org';<BR>
    $from = $this->input->post('Email');<BR>
    $fromName = $this->input->post('Name');<BR>
    $mailSubject = 'Contact Request Submitted by '.$fromName;<BR>
    $message = $this->input->post('Message');<BR>
    $this->email->from($from, 'name'); <Br>
    $this->email->to($to); <Br>
    $this->email->subject('Email Test'); <Br>
    $this->email->message('Testing the email class.');<BR>
    $this->email->send();
?>

1 Ответ

0 голосов
/ 02 марта 2019

Попробуйте, это будет работать ...

            $config['protocol'] = 'smtp';

            $config['smtp_host'] = 'mail.domain.com';

            $config['smtp_port'] = '587';

            $config['smtp_timeout'] = '7';

            $config['smtp_user'] = 'domain email here';

            $config['smtp_pass'] = 'email password here';

            $config['charset'] = 'utf-8';

            $config['newline'] = "\r\n";

            $config['mailtype'] = 'html'; // or html

            $config['validation'] = TRUE; // bool whether to validate email or not      

            $this->email->initialize($config);
            $this->email->from('email here', 'Email Name');
            $this->email->to('email to');

            $this->email->subject('subject here');



            $this->email->message('message here');


            $this->email->send();
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...