Skip to content

Commit

Permalink
Create email.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed Jun 26, 2024
1 parent cc41202 commit d3d9f59
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions application/config/email.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$smtpass = getenv("SMTPPASS");

$config['protocol'] = 'smtp';
$config['wordwrap'] = TRUE;
$config['mailtype'] = 'html';
$config['charset'] = 'utf-8';
$config['crlf'] = '\r\n';
$config['newline'] = '\r\n';
$config['smtp_host'] = 'imperial-dekra.gr';
$config['smtp_user'] = '[email protected]';
$config['smtp_pass'] = $smtpass;
$config['smtp_port'] = '587';
$config['smtp_crypto'] = 'TLS';
$config['smtp_timeout'] = '5';

0 comments on commit d3d9f59

Please sign in to comment.