You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Did you search the issue queue for existing issue? Search issues
Issue Description
Currently, Reaction only supports sending email through an SMTP account. This logic is hardcoded in imports/plugins/core/core/server/Reaction/processEmailJobs.js. There is no way to plug in to the email job handling and use a third-party email provider that doesn't use SMTP.
Possible Solution
Use the new appEvents to allow other plugins to process email jobs and send with any email service. Example: appEvents.emit("processEmailJobs") from processEmailJobs.js, and appEvents.on("processEmailJobs", (jobs, callback) => CUSTOM_LOGIC_HERE).
The text was updated successfully, but these errors were encountered:
Prerequisites
Issue Description
Currently, Reaction only supports sending email through an SMTP account. This logic is hardcoded in
imports/plugins/core/core/server/Reaction/processEmailJobs.js
. There is no way to plug in to the email job handling and use a third-party email provider that doesn't use SMTP.Possible Solution
Use the new
appEvents
to allow other plugins to process email jobs and send with any email service. Example:appEvents.emit("processEmailJobs")
fromprocessEmailJobs.js
, andappEvents.on("processEmailJobs", (jobs, callback) => CUSTOM_LOGIC_HERE)
.The text was updated successfully, but these errors were encountered: