Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fabulousduck/9962e9b4b8e265591f8e523aba3c5ae5 to your computer and use it in GitHub Desktop.
Save fabulousduck/9962e9b4b8e265591f8e523aba3c5ae5 to your computer and use it in GitHub Desktop.
.tap(function sendSalesUpgradeNotification({ newSubscription, newPayment}) {
const { name, price } = newSubscription.plan;
const { userId } = newPayment;
return mailer.sendSalesNotificationEmail(name, price, userId)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment