- <?php
-
- namespace Config;
-
- use CodeIgniter\Config\BaseConfig;
-
- class Email extends BaseConfig
- {
-
-
- public $fromEmail = 'admin@mail.com';
-
-
-
- public $fromName = 'Admin';
-
-
-
- public $recipients;
-
-
-
- public $userAgent = 'CodeIgniter';
-
-
-
- public $protocol = 'smtp';
-
-
-
- public $mailPath = '/usr/sbin/sendmail';
-
-
-
- public $SMTPHost = 'smtp.mailtrap.io';
-
-
-
-
- public $SMTPUser = 'c504e92b75d96e';
-
-
-
-
- public $SMTPPass = '4f1c9858aef3fb';
-
-
-
- public $SMTPPort = 587;
-
-
-
- public $SMTPTimeout = 20;
-
-
-
- public $SMTPKeepAlive = false;
-
-
-
- public $SMTPCrypto = 'tls';
-
-
-
- public $wordWrap = true;
-
-
-
- public $wrapChars = 76;
-
-
-
- public $mailType = 'html';
-
-
-
- public $charset = 'UTF-8';
-
-
-
- public $validate = false;
-
-
-
- public $priority = 3;
-
-
-
- public $CRLF = "\r\n";
-
-
-
- public $newline = "\r\n";
-
-
-
- public $BCCBatchMode = false;
-
-
-
- public $BCCBatchSize = 200;
-
-
-
- public $DSN = false;
- }
|