2016-07-16 17:18:37 +03:00
|
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
|
|
|
// Add custom values by settings them to the $config array.
|
|
|
|
// Example: $config['smtp_host'] = 'smtp.gmail.com';
|
|
|
|
// @link https://codeigniter.com/user_guide/libraries/email.html
|
|
|
|
|
|
|
|
$config['useragent'] = 'Easy!Appointments';
|
2016-07-16 17:56:02 +03:00
|
|
|
$config['protocol'] = 'smtp';
|
2016-07-16 17:18:37 +03:00
|
|
|
$config['mailtype'] = 'html';
|
2016-07-16 17:56:02 +03:00
|
|
|
$config['smtp_host'] = 'smtp.gmail.com';
|
|
|
|
$config['smtp_user'] = 'johndoe.atdev@gmail.com';
|
|
|
|
$config['smtp_pass'] = 'aPCiALxAgrpwG9RgcqxN';
|
|
|
|
$config['smtp_crypto'] = 'ssl';
|
|
|
|
$config['smtp_port'] = 465;
|