Skip to content

Commit 29099d4

Browse files
committed
Update mail configuration
1 parent 295001a commit 29099d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ PL_APP_LOCALE=en_US
1111
PL_APP_KEY=
1212

1313
# Logger
14-
PL_LOG_DRIVER=file
1514
PL_LOG_LEVEL=debug
1615
PL_LOG_TIMESTAMP=false
1716
PL_LOG_FILE_LEVEL=debug
@@ -110,4 +109,5 @@ PL_MAIL_SMTP_PORT=
110109
PL_MAIL_SMTP_TIMEOUT=
111110
PL_MAIL_SMTP_RESPONSE_TIMEOUT=
112111
PL_MAIL_SMTP_USERNAME=
113-
PL_MAIL_SMTP_PASSWORD=
112+
PL_MAIL_SMTP_PASSWORD=
113+
PL_MAIL_SMTP_ENCRYPTION=none

config/logging.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
use Platine\Logger\LogLevel;
55

66
return [
7-
'driver' => env('PL_LOG_DRIVER', 'file'),
87
'level' => env('PL_LOG_LEVEL', LogLevel::DEBUG),
98
'timestamp' => env('PL_LOG_TIMESTAMP', false),
109
'handlers' => [

config/mail.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
'response_timeout' => env('PL_MAIL_SMTP_RESPONSE_TIMEOUT', 10, 'duration'),
1212
'username' => env('PL_MAIL_SMTP_USERNAME', ''),
1313
'password' => env('PL_MAIL_SMTP_PASSWORD', ''),
14+
'encryption' => env('PL_MAIL_SMTP_ENCRYPTION', 'none'), // "none", "tls", "starttls"
1415
],
1516
];

0 commit comments

Comments
 (0)