We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3396800 commit 91d5dd9Copy full SHA for 91d5dd9
app/Config/Email.php
@@ -6,9 +6,9 @@
6
7
class Email extends BaseConfig
8
{
9
- public string $fromEmail;
10
- public string $fromName;
11
- public string $recipients;
+ public string $fromEmail = '';
+ public string $fromName = '';
+ public string $recipients = '';
12
13
/**
14
* The "user agent"
@@ -28,17 +28,17 @@ class Email extends BaseConfig
28
29
* SMTP Server Address
30
*/
31
- public string $SMTPHost;
+ public string $SMTPHost = '';
32
33
34
* SMTP Username
35
36
- public string $SMTPUser;
+ public string $SMTPUser = '';
37
38
39
* SMTP Password
40
41
- public string $SMTPPass;
+ public string $SMTPPass = '';
42
43
44
* SMTP Port
0 commit comments