EVOLUTION-NINJA
Edit File: Email.php
<?php // namespace Config; // use CodeIgniter\Config\BaseConfig; // class Email extends BaseConfig // { // public string $fromEmail = 'prakruthisv45@gmail.com'; // public string $fromName = 'Bindu'; // public string $recipients = ''; // /** // * The "user agent" // */ // public string $userAgent = 'CodeIgniter'; // /** // * The mail sending protocol: mail, sendmail, smtp // */ // public string $protocol = 'smtp'; // /** // * The server path to Sendmail. // */ // public string $mailPath = '/usr/sbin/sendmail'; // /** // * SMTP Server Hostname // */ // public string $SMTPHost = 'smtp.example.com'; // /** // * SMTP Username // */ // public string $SMTPUser = 'prakruthisv45@gmail.com'; // /** // * SMTP Password // */ // public string $SMTPPass = 'yhup qyfu qemi neto'; // /** // * SMTP Port // */ // public int $SMTPPort = 587; // /** // * SMTP Timeout (in seconds) // */ // public int $SMTPTimeout = 5; // /** // * Enable persistent SMTP connections // */ // public bool $SMTPKeepAlive = false; // /** // * SMTP Encryption. // * // * @var string '', 'tls' or 'ssl'. 'tls' will issue a STARTTLS command // * to the server. 'ssl' means implicit SSL. Connection on port // * 465 should set this to ''. // */ // public string $SMTPCrypto = 'tls'; // /** // * Enable word-wrap // */ // public bool $wordWrap = true; // /** // * Character count to wrap at // */ // public int $wrapChars = 76; // /** // * Type of mail, either 'text' or 'html' // */ // public string $mailType = 'text'; // /** // * Character set (utf-8, iso-8859-1, etc.) // */ // public string $charset = 'UTF-8'; // /** // * Whether to validate the email address // */ // public bool $validate = false; // /** // * Email Priority. 1 = highest. 5 = lowest. 3 = normal // */ // public int $priority = 3; // /** // * Newline character. (Use ā\r\nā to comply with RFC 822) // */ // public string $CRLF = "\r\n"; // /** // * Newline character. (Use ā\r\nā to comply with RFC 822) // */ // public string $newline = "\r\n"; // /** // * Enable BCC Batch Mode. // */ // public bool $BCCBatchMode = false; // /** // * Number of emails in each BCC batch // */ // public int $BCCBatchSize = 200; // /** // * Enable notify message from server // */ // public bool $DSN = false; // } // namespace Config; // use CodeIgniter\Config\BaseConfig; // class Email extends BaseConfig // { // public $fromEmail = 'prakruthisv45@gmail.com'; // public $fromName = 'Bindu'; // public $recipients = ''; // public $userAgent = 'CodeIgniter'; // public $protocol = 'smtp'; // public $SMTPHost = 'smtp.gmail.com'; // public $SMTPUser = 'prakruthisv45@gmail.com'; // public $SMTPPass = 'yhup qyfu qemi neto'; // public $SMTPPort = 25; // public $SMTPCrypto = 'tls'; // public $mailPath = '/usr/sbin/sendmail'; // public $SMTPTimeout = 5; // public $SMTPKeepAlive = false; // 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; // } namespace Config; use CodeIgniter\Config\BaseConfig; class Email extends BaseConfig { // public string $fromEmail = 'rbalu743@gmail.com'; // Replace with your Gmail email address // public string $fromName = 'Balraj'; // Replace with your sender name // public string $recipients = ''; // public string $userAgent = 'CodeIgniter'; // public string $protocol = 'smtp'; // // Gmail SMTP configuration // public string $SMTPHost = 'smtp.gmail.com'; // public string $SMTPUser = 'rbalu743@gmail.com'; // Replace with your Gmail email address // // public string $SMTPPass = 'mjih bkkb nibu jqtb'; // Replace with your Gmail password or App Password // public string $SMTPPass = 'qcuw hzyn exhs irca'; // Replace with your Gmail password or App Password // public int $SMTPPort = 587; // public int $SMTPTimeout = 5; // public bool $SMTPKeepAlive = false; // public string $SMTPCrypto = 'tls'; // // Other email configuration options // public bool $wordWrap = true; // public int $wrapChars = 76; // public string $mailType = 'text'; // public string $charset = 'UTF-8'; // public bool $validate = false; // 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; // } public string $fromEmail = 'binduenquiry@gmail.com'; // Replace with your Gmail email address public string $fromName = 'Bindu Travels'; // Replace with your sender name public string $recipients = ''; public string $userAgent = 'CodeIgniter'; public string $protocol = 'smtp'; // Gmail SMTP configuration public string $SMTPHost = 'smtp.gmail.com'; public string $SMTPUser = 'binduenquiry@gmail.com'; // Replace with your Gmail email address public string $SMTPPass = 'rxes osqy cvlp dugb'; // Replace with your Gmail password or App Password public int $SMTPPort = 587; public int $SMTPTimeout = 5; public bool $SMTPKeepAlive = false; public string $SMTPCrypto = 'tls'; // Other email configuration options public bool $wordWrap = true; public int $wrapChars = 76; public string $mailType = 'text'; public string $charset = 'UTF-8'; public bool $validate = false; 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; }