mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
14 lines
549 B
PHP
14 lines
549 B
PHP
<?php defined('BASEPATH') OR 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'; // or 'smtp'
|
|
$config['mailtype'] = 'html'; // or 'text'
|
|
// $config['smtp_host'] = '';
|
|
// $config['smtp_user'] = '';
|
|
// $config['smtp_pass'] = '';
|
|
// $config['smtp_crypto'] = 'ssl'; // or 'tls'
|
|
// $config['smtp_port'] = 25;
|