Refactor sendingQueue to distinguish bulk/individual sending method

[MAILPOET-1154]
This commit is contained in:
Rostislav Wolny
2018-09-11 16:56:26 +02:00
parent 3ae8763837
commit ea4c5f46fb
4 changed files with 53 additions and 15 deletions

View File

@ -114,7 +114,10 @@ class MailerTest extends \MailPoetTest {
return true;
})),
$this
)
),
'mailer_config' => [
'method' => null,
]
)
);
// mailer instance should be properly configured
@ -128,4 +131,4 @@ class MailerTest extends \MailPoetTest {
\ORM::raw_execute('TRUNCATE ' . Setting::$_table);
\ORM::raw_execute('TRUNCATE ' . Subscriber::$_table);
}
}
}