diff --git a/packages/medusa-plugin-sendgrid/src/subscribers/user.js b/packages/medusa-plugin-sendgrid/src/subscribers/user.js index bc898b3e0c..f93a6d1e7f 100644 --- a/packages/medusa-plugin-sendgrid/src/subscribers/user.js +++ b/packages/medusa-plugin-sendgrid/src/subscribers/user.js @@ -5,9 +5,10 @@ class UserSubscriber { this.eventBus_ = eventBusService this.eventBus_.subscribe("user.password_reset", async (data) => { - await this.sendgridService_.transactionalEmail( + await this.sendgridService_.sendNotification( "user.password_reset", - data + data, + null ) }) }