32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
|
<?php
|
||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
|
||
|
// $config['protocol'] = 'smtp';
|
||
|
// $config['smtp_host'] = 'smtp.office365.com'; // $config['smtp_host'] = 'ssl://smtp.gmail.com' smtp.office365.com;
|
||
|
// $config['smtp_user'] = 'erisnclassroom@erisn.com';
|
||
|
// $config['smtp_pass'] = 'Bas87490';
|
||
|
// $config['smtp_port'] = '587'; // for gmail port 465 587
|
||
|
// $config['smtp_timeout'] = '60';
|
||
|
// $config['smtp_crypto'] = 'tls';
|
||
|
// $config['mailtype'] = 'html';
|
||
|
// $config['charset']='utf-8';
|
||
|
// $config['newline']="\r\n";
|
||
|
// $config['crlf'] = "\r\n";
|
||
|
|
||
|
$config['protocol'] = 'sendmail';
|
||
|
$config['smtp_host'] = 'smtp.googlemail.com';
|
||
|
$config['smtp_port'] = '587';
|
||
|
$config['smtp_timeout'] = '5';
|
||
|
// $config['smtp_user'] = 'bb.blackboardnepal@gmail.com';
|
||
|
// $config['smtp_pass'] = 'Black#312';
|
||
|
$config['smtp_user'] = 'info@blackboard.com.np';
|
||
|
$config['smtp_pass'] = 'pfG3OdbHKaCu';
|
||
|
$config['smtp_crypto'] = 'tls';
|
||
|
$config['charset'] = 'utf-8';
|
||
|
$config['newline']="\r\n";
|
||
|
$config['crlf'] = "\r\n";
|
||
|
$config['mailtype'] = 'html';
|
||
|
// $config['dsn'] = 'html';
|
||
|
// $config['validation'] = TRUE;
|
||
|
|