Skip to content
Snippets Groups Projects
email.php 686 B
Newer Older
<?php defined('SYSPATH') OR die('No direct access allowed.');

return array
(
    'default' => array(
        'host' => 'localhost',          // Specify SMTP server
        'port' => '25',                 // TCP port to connect to
        'username' => NULL,             // SMTP username
        'password' => NULL,             // SMTP password
        'SMTPAuth' => false,            // Enable SMTP authentication
        'SMTPSecure' => NULL,           // Enable TLS encryption, `ssl` also accepted
        'from' => 'no_reply@grade.sfedu.ru',
        'fromName' => 'Grade System (Сервис БРС)',
        'enableDebug' => false         // Enable verbose debug output
    ),
);