You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
574 B
15 lines
574 B
<?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'] = 'smtp'; // or 'smtp'
|
|
$config['mailtype'] = 'html'; // or 'text'
|
|
$config['smtp_host'] = '${SMTP_HOST}';
|
|
$config['smtp_user'] = '${SMTP_USER}';
|
|
$config['smtp_pass'] = '${SMTP_PASS}';
|
|
$config['smtp_crypto'] = 'starttls'; // or 'tls'
|
|
$config['smtp_port'] = 587;
|