forked from mirrors/easyappointments
Added email configuration file.
This commit is contained in:
parent
60c05946a7
commit
5574e38436
1 changed files with 14 additions and 0 deletions
14
src/application/config/email.php
Normal file
14
src/application/config/email.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?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';
|
||||
$config['protocol'] = 'mail';
|
||||
$config['mailtype'] = 'html';
|
||||
// $config['smtp_host'] = '';
|
||||
// $config['smtp_user'] = '';
|
||||
// $config['smtp_pass'] = '';
|
||||
// $config['smtp_crypto'] = 'ssl';
|
||||
// $config['smtp_port'] = 25;
|
Loading…
Reference in a new issue