fix from name and from address can not be saved

This commit is contained in:
peaklabs-dev
2024-11-08 16:43:40 +01:00
parent e21036fd29
commit 959966ad31

View File

@@ -63,6 +63,8 @@ class SettingsEmail extends Component
$this->settings->smtp_username = $this->smtpUsername; $this->settings->smtp_username = $this->smtpUsername;
$this->settings->smtp_password = $this->smtpPassword; $this->settings->smtp_password = $this->smtpPassword;
$this->settings->smtp_timeout = $this->smtpTimeout; $this->settings->smtp_timeout = $this->smtpTimeout;
$this->settings->smtp_from_address = $this->smtpFromAddress;
$this->settings->smtp_from_name = $this->smtpFromName;
$this->settings->resend_enabled = $this->resendEnabled; $this->settings->resend_enabled = $this->resendEnabled;
$this->settings->resend_api_key = $this->resendApiKey; $this->settings->resend_api_key = $this->resendApiKey;