expnaded sample env

This commit is contained in:
2023-02-25 18:34:20 -05:00
parent b5736e8121
commit b6abcb1586
12 changed files with 536 additions and 47 deletions
+12 -8
View File
@@ -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
*