Files
medusa-store/packages/medusa-plugin-sendgrid/src/subscribers/user.js
T
Oliver Windall Juhl d6fc477636 SendGrid plugin (#77)
Closes #73 and #77
2020-07-03 18:00:54 +02:00

24 lines
572 B
JavaScript

class UserSubscriber {
constructor({ sendgridService, eventBusService }) {
this.sendgridService_ = sendgridService
this.eventBus_ = eventBusService
this.eventBus_.subscribe("user.password_reset", async (data) => {
await this.sendgridService_.transactionalEmail(
"user.password_reset",
data
)
})
this.eventBus_.subscribe("customer.password_reset", async (data) => {
await this.sendgridService_.transactionalEmail(
"customer.password_reset",
data
)
})
}
}
export default UserSubscriber