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
766 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'] = '${SMTP_USERAGENT}'; //'Easy!Appointments'
$config['protocol'] = '${SMTP_PROTOCOL}'; // 'smtp' or 'mail'
$config['mailtype'] = '${SMTP_MAILTYPE}'; // 'html' or 'text'
// $config['smtp_debug'] = '0'; // or '1'
$config['smtp_auth'] = ${SMTP_AUTH}; //or FALSE for anonymous relay.
$config['smtp_host'] = '${SMTP_HOST}';
$config['smtp_user'] = '${SMTP_USER}';
$config['smtp_pass'] = '${SMTP_PASS}';
$config['smtp_crypto'] = '${SMTP_CRYPTO}'; // 'ssl' or 'tls'
$config['smtp_port'] = ${SMTP_PORT};