update configuration
This commit is contained in:
parent
b608e3acd1
commit
1125b74adc
1 changed files with 6 additions and 6 deletions
12
index.php
12
index.php
|
@ -15,13 +15,13 @@ define('DB_PASSWORD', '');
|
|||
define('DISPLAY_ERROR', true);
|
||||
|
||||
//mail config
|
||||
define('MAIL_HOST', 'smtp.gmail.com');
|
||||
define('SMTP_AUTH', true);
|
||||
define('MAIL_USERNAME', '');
|
||||
define('MAIL_PASSWORD', '');
|
||||
define('MAIL_HOST', 'sandbox.smtp.mailtrap.io');
|
||||
define('SMTP_AUTH', 'LOGIN');
|
||||
define('MAIL_USERNAME', 'yourMailUsername');
|
||||
define('MAIL_PASSWORD', 'yourMailPassword');
|
||||
define('MAIL_PORT', 587);
|
||||
define('SENDER_MAIL', '');
|
||||
define('SENDER_NAME', 'Mobina nj');
|
||||
define('SENDER_MAIL', 'onlinenewssite@admin.com');
|
||||
define('SENDER_NAME', 'admin');
|
||||
|
||||
//database
|
||||
require_once 'database/DataBase.php';
|
||||
|
|
Loading…
Reference in a new issue