forked from nishantml/php-mailer-with-custom-html-template-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.php
More file actions
15 lines (12 loc) · 717 Bytes
/
Config.php
File metadata and controls
15 lines (12 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
class Config
{
public static $SMTP_SERVER = 'cs8.webhostbox.net'; // smtp host name
public static $SMTP_USERNAME = 'developer@devmins.com'; // sending mailer email id should be there.
public static $SMTP_PASSWORD = 'xyx'; // sending mailer email id password should be there.
public static $ROOT_DOMAIN = "";
public static $ADMIN_EMAIL = array("admin@devmins.com"); // admin email where client query will be recieved
public static $ADMIN_NAME = array("Nishant"); // admin name where client query will be recieved
public static $DEFAULT_SENDER_EMAIL = 'developer@devmins.com'; // sending mailer email id should be there.
public static $DEFAULT_SENDER_NAME = 'Team '; //
}