motorbike/app/Config/Email.php
2025-08-19 13:53:05 +03:00

54 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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 dapplication (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;
}