config codeigniter для отправки электронной почты в plesk (параллели)

0

как можно использовать codeigniter для отправки электронной почты в хосте plesk. Я поместил свои конфиги в файл email.php в папку config:

    <?php 
    $config['protocol'] = 'smtp';
    $config['smtp_host'] = 'my-domain.com';
    $config['smtp_user'] = '[email protected]';
    $config['smtp_pass'] = 'my-email-password';
    $config['smtp_port'] = 587;
    $config['mailtype'] = 'html';
    $config['charset'] = 'utf-8';
    $config['priority'] =5;
    $config['wordwrap'] = TRUE;
  • 0
    Добро пожаловать в стек переполнения. Это не хороший способ задать вопрос здесь. Вы пробовали что-нибудь до сих пор, чтобы решить вашу проблему? Сначала покажите свои усилия, чтобы люди могли показать свои. Пожалуйста, прочитайте FAQ , Как спросить и справочный центр для начала.
Теги:
codeigniter
email

1 ответ

0
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Welcome extends CI_Controller {

/**
 * Index Page for this controller.
 *
 * Maps to the following URL
 *      http://example.com/index.php/welcome
 *  - or -  
 *      http://example.com/index.php/welcome/index
 *  - or -
 * Since this controller is set as the default controller in 
 * config/routes.php, it displayed at http://example.com/
 *
 * So any other public methods not prefixed with an underscore will
 * map to /index.php/welcome/<method_name>
 * @see http://codeigniter.com/user_guide/general/urls.html
 */
public function index()
{
    //$this->load->view('welcome_message');

$this->load->library('email');

$this->email->initialize(array(
'protocol' => 'smtp',
'smtp_host' => 'your mail host',
'smtp_user' => 'your mail id',
'smtp_pass' => 'your mail password',
'smtp_port' => port id,
'crlf' => "\r\n",
'newline' => "\r\n"
));

$this->email->from('from mail id', 'Prasanna');
$this->email->to('to mail id');
//$this->email->cc('[email protected]');
//$this->email->bcc('[email protected]');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$status = $this->email->send(); 
if($status =='1'){
echo "Success";
}

}
}

/ * End of file welcome.php */
/* Location: ./application/controllers/welcome.php */

Ещё вопросы

Сообщество Overcoder
Наверх
Меню