docs: describes usage of plugin
This commit is contained in:
@@ -13,10 +13,6 @@ class OrderSubscriber {
|
||||
this.notificationService_.subscribe("swap.created", "sendgrid")
|
||||
this.notificationService_.subscribe("order.items_returned", "sendgrid")
|
||||
this.notificationService_.subscribe("order.return_requested", "sendgrid")
|
||||
this.notificationService_.subscribe(
|
||||
"restock_notification.restocked",
|
||||
"sendgrid"
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
class RestockNotification {
|
||||
constructor({ eventBusService, sendgridService }) {
|
||||
eventBusService.subscribe(
|
||||
"restock-notification.restocked",
|
||||
async (eventData) => {
|
||||
const templateId = await sendgridService.getTemplateId(
|
||||
"restock-notification.restocked"
|
||||
)
|
||||
|
||||
if (!templateId) {
|
||||
return
|
||||
}
|
||||
|
||||
const data = await sendgridService.fetchData(
|
||||
"restock-notification.restocked",
|
||||
eventData,
|
||||
null
|
||||
)
|
||||
|
||||
if (!data.emails) {
|
||||
return
|
||||
}
|
||||
|
||||
return await Promise.all(
|
||||
data.emails.map(async (e) => {
|
||||
const sendOptions = {
|
||||
template_id: templateId,
|
||||
from: sendgridService.options_.from,
|
||||
to: e,
|
||||
dynamic_template_data: data,
|
||||
}
|
||||
|
||||
return await sendgridService.sendEmail(sendOptions)
|
||||
})
|
||||
)
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default RestockNotification
|
||||
Reference in New Issue
Block a user