Skip to content

Commit

Permalink
Release v4.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jan 14, 2023
1 parent 3396800 commit 91d5dd9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/Config/Email.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

class Email extends BaseConfig
{
public string $fromEmail;
public string $fromName;
public string $recipients;
public string $fromEmail = '';
public string $fromName = '';
public string $recipients = '';

/**
* The "user agent"
Expand All @@ -28,17 +28,17 @@ class Email extends BaseConfig
/**
* SMTP Server Address
*/
public string $SMTPHost;
public string $SMTPHost = '';

/**
* SMTP Username
*/
public string $SMTPUser;
public string $SMTPUser = '';

/**
* SMTP Password
*/
public string $SMTPPass;
public string $SMTPPass = '';

/**
* SMTP Port
Expand Down

0 comments on commit 91d5dd9

Please sign in to comment.