Skip to content

Commit

Permalink
fix(billing): reconciliation email subject (#2464)
Browse files Browse the repository at this point in the history
* fix(billing): reconciliation email subject

* Fixed typo
  • Loading branch information
Cosmin-Parvulescu committed Jul 10, 2023
1 parent fc34f6c commit e3a24a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions platform/email/emailTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ export const EmailTemplateBillingReconciledEntitlements = (
- The Rollup Team
</p>`

return EmailTemplateBase(params, content, '')
return EmailTemplateBase(params, content, 'Entitlement(s) Removed')
}

export const EmailTemplateDevReconciledEntitlements = (
Expand Down Expand Up @@ -352,5 +352,5 @@ export const EmailTemplateDevReconciledEntitlements = (
- The Rollup Team
</p>`

return EmailTemplateBase(params, content, '')
return EmailTemplateBase(params, content, 'App Downgraded')
}
6 changes: 3 additions & 3 deletions platform/email/wrangler.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ NotificationFromName = "Rollup Local - Notification"
NotificationFromUser = "noreplylocal"

[env.dev.vars]
NotificationFromName = "Rollup Dev - Notifcation"
NotificationFromName = "Rollup Dev - Notification"
NotificationFromUser = 'noreply-dev'

[env.next.vars]
NotificationFromName = "Rollup Next - Notifcation"
NotificationFromName = "Rollup Next - Notification"
NotificationFromUser = 'noreply-next'

[env.current.vars]
NotificationFromName = "Rollup - Notifcation"
NotificationFromName = "Rollup - Notification"
NotificationFromUser = 'noreply'

0 comments on commit e3a24a7

Please sign in to comment.