Remove extra sending method check for new users.
mta.method is probably not set yet. MAILPOET-4929
This commit is contained in:
committed by
Aschepikov
parent
805804f3d3
commit
10ea5ec55b
@@ -57,7 +57,7 @@ class DisabledMailFunctionNotice {
|
||||
$this->settings->set(self::QUEUE_DISABLED_MAIL_FUNCTION_CHECK, false);
|
||||
}
|
||||
|
||||
$sendingMethod = $this->settings->get('mta.method', false);
|
||||
$sendingMethod = $this->settings->get('mta.method', SettingsController::DEFAULT_SENDING_METHOD);
|
||||
$isPhpMailSendingMethod = $sendingMethod === Mailer::METHOD_PHPMAIL;
|
||||
|
||||
if (!$isPhpMailSendingMethod) {
|
||||
|
Reference in New Issue
Block a user