54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
<?php
|
||
namespace Config;
|
||
|
||
use CodeIgniter\Config\BaseConfig;
|
||
|
||
class Email extends BaseConfig
|
||
{
|
||
public string $fromEmail = 'rey342505@gmail.com';
|
||
public string $fromName = 'motorbike';
|
||
public string $recipients = '';
|
||
|
||
public string $userAgent = 'CodeIgniter';
|
||
|
||
public string $protocol = 'smtp';
|
||
|
||
public string $mailPath = '/usr/sbin/sendmail';
|
||
|
||
public string $SMTPHost = 'smtp.gmail.com';
|
||
|
||
public string $SMTPUser = 'rey342505@gmail.com';
|
||
|
||
public string $SMTPPass = 'loirqovmfuxnasrm'; // Mot de passe d’application (App Password) Gmail
|
||
|
||
public int $SMTPPort = 587;
|
||
|
||
public int $SMTPTimeout = 30;
|
||
|
||
public bool $SMTPKeepAlive = false;
|
||
|
||
public string $SMTPCrypto = 'tls';
|
||
|
||
public bool $wordWrap = true;
|
||
|
||
public int $wrapChars = 76;
|
||
|
||
public string $mailType = 'html';
|
||
|
||
public string $charset = 'UTF-8';
|
||
|
||
public bool $validate = true;
|
||
|
||
public int $priority = 3;
|
||
|
||
public string $CRLF = "\r\n";
|
||
|
||
public string $newline = "\r\n";
|
||
|
||
public bool $BCCBatchMode = false;
|
||
|
||
public int $BCCBatchSize = 200;
|
||
|
||
public bool $DSN = false;
|
||
}
|