Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
Add default email configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
panigrc committed Oct 25, 2020
1 parent df266a9 commit 721c9bd
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions application/config/email.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');

/*
| -------------------------------------------------------------------
| Email Configuration
| -------------------------------------------------------------------
|
| https://codeigniter.com/userguide3/libraries/email.html#setting-email-preferences
|
*/

$config['useragent'] = 'CodeIgniter';
$config['protocol'] = 'mail';
$config['mailpath'] = '/usr/sbin/sendmail';
$config['smtp_host'] = '';
$config['smtp_user'] = '';
$config['smtp_pass'] = '';
$config['smtp_port'] = 25;
$config['smtp_timeout'] = 5;
$config['smtp_keepalive'] = FALSE;
$config['smtp_crypto'] = '';
$config['wordwrap'] = TRUE;
$config['wrapchars'] = 76;
$config['mailtype'] = 'text';
$config['validate'] = 'FALSE';
$config['priority'] = 3;
$config['crlf'] = '\n';
$config['newline'] = '\n';
$config['bcc_batch_mode'] = FALSE;
$config['bcc_batch_size'] = 200;
$config['dsn'] = FALSE;

0 comments on commit 721c9bd

Please sign in to comment.