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
Several system components require the ability to notify a identity about something:
Account activation / verification must send out an email or SMS containing a code for activating the account.
Account recovery must send out an email with a password reset link
Sending out a welcome email
...
To support this we need a system capable of delivering notifications using several protocols:
SMTP
SMS (Maybe Twillio or something similar?)
As well as being able to render the notification message itself with localization.
One possibility to solve templating would be to provide default (english) templates for all protocols and workflows and leave open the possibility to "mount" a directory (think Kubernetes) to load localized and customized templates:
This patch adds a message templates (with override capabilities)
and SMTP delivery.
Integration tests using MailHog test fault resilience and e2e email
delivery.
This system is designed to be extended for SMS and other use cases.
Closes#99
This patch adds a message templates (with override capabilities)
and SMTP delivery.
Integration tests using MailHog test fault resilience and e2e email
delivery.
This system is designed to be extended for SMS and other use cases.
Closes#99
Several system components require the ability to notify a identity about something:
To support this we need a system capable of delivering notifications using several protocols:
As well as being able to render the notification message itself with localization.
One possibility to solve templating would be to provide default (english) templates for all protocols and workflows and leave open the possibility to "mount" a directory (think Kubernetes) to load localized and customized templates:
plus a config variable such as
hermes.templates
pointing at a directory with a structure such as:The text was updated successfully, but these errors were encountered: