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.
easyappointments-archive/application/config/email.php

17 lines
665 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 'mail'
$config['mailtype'] = 'html'; // or 'text'
// $config['smtp_debug'] = '0'; // or '1'
$config['smtp_auth'] = FALSE; //or FALSE for anonymous relay.
$config['smtp_host'] = '${SMTP_HOST}';
// $config['smtp_user'] = '';
// $config['smtp_pass'] = '';
$config['smtp_crypto'] = '${SMTP_CRYPTO}'; // or 'tls'
$config['smtp_port'] = 25;