Revert "refactor: emailer.send and emailer.sendToEmail returns Boolean based on message being successfully sent"

This reverts commit f0e32ff182.
This commit is contained in:
Julian Lam
2022-01-28 15:26:10 -05:00
parent 165a1d8b76
commit e25c0313d1
2 changed files with 12 additions and 16 deletions

View File

@@ -47,7 +47,7 @@ describe('emailer', () => {
// TODO: test sendmail here at some point
it('plugin hook should work', async () => {
it('plugin hook should work', (done) => {
const error = new Error();
Plugins.hooks.register('emailer-test', {
@@ -61,10 +61,12 @@ describe('emailer', () => {
},
});
const success = await Emailer.sendToEmail(template, email, language, params);
assert.strictEqual(success, false);
Emailer.sendToEmail(template, email, language, params, (err) => {
assert.equal(err, error);
Plugins.hooks.unregister('emailer-test', 'filter:email.send');
Plugins.hooks.unregister('emailer-test', 'filter:email.send');
done();
});
});
it('should build custom template on config change', (done) => {