expnaded sample env
This commit is contained in:
+12
-8
@@ -33,8 +33,8 @@ class Email extends BaseConfig
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $protocol = 'mail';
|
||||
|
||||
//public $protocol = 'mail';
|
||||
public $protocol = 'smtp';
|
||||
/**
|
||||
* The server path to Sendmail.
|
||||
*
|
||||
@@ -47,28 +47,32 @@ class Email extends BaseConfig
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $SMTPHost;
|
||||
//public $SMTPHost;
|
||||
public $SMTPHost= 'smtp.google.com';
|
||||
|
||||
/**
|
||||
* SMTP Username
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $SMTPUser;
|
||||
|
||||
//public $SMTPUser;
|
||||
public $SMTPUser='support@chiefsoft.com';
|
||||
/**
|
||||
* SMTP Password
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $SMTPPass;
|
||||
//public $SMTPPass;
|
||||
public $SMTPPass='may12002!';
|
||||
|
||||
|
||||
/**
|
||||
* SMTP Port
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $SMTPPort = 25;
|
||||
//public $SMTPPort = 25;
|
||||
public $SMTPPort = 465; // 993; //465;
|
||||
|
||||
/**
|
||||
* SMTP Timeout (in seconds)
|
||||
@@ -89,8 +93,8 @@ class Email extends BaseConfig
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
//public $SMTPCrypto = 'tls';
|
||||
public $SMTPCrypto = 'tls';
|
||||
|
||||
/**
|
||||
* Enable word-wrap
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user