backoffice/application/config/email.php

15 lines
483 B
PHP
Raw Permalink Normal View History

2020-05-04 13:18:44 +00:00
<?php defined('BASEPATH') OR exit('No direct script access allowed');
$config = array(
'protocol' => 'smtp', // 'mail', 'sendmail', or 'smtp'
'smtp_host' => 'mail.ilink-app.com',
'smtp_port' => 587,
'smtp_user' => 'noreply@ilink-app.com',
2022-06-24 08:41:22 +00:00
'smtp_pass' => 'Reply@iLink2022@@@',
2020-05-04 13:18:44 +00:00
'smtp_crypto' => 'tls', //can be 'ssl' or 'tls' for example
'mailtype' => 'text', //plaintext 'text' mails or 'html'
'smtp_timeout' => '5', //in seconds
'charset' => 'utf8',
2020-05-04 13:18:44 +00:00
'wordwrap' => TRUE
);