feat: new hook static:email.send

deprecates filter:email.send
This commit is contained in:
Julian Lam
2021-02-25 15:05:36 -05:00
parent 0dad568cbe
commit bf90d15881
2 changed files with 4 additions and 0 deletions

View File

@@ -314,7 +314,10 @@ Emailer.sendToEmail = async (template, email, language, params) => {
try {
if (Plugins.hooks.hasListeners('filter:email.send')) {
// Deprecated, remove in v1.18.0
await Plugins.hooks.fire('filter:email.send', data);
} else if (Plugins.hooks.hasListeners('static:email.send')) {
await Plugins.hooks.fire('static:email.send', data);
} else {
await Emailer.sendViaFallback(data);
}