feat: Add support for sendgrid and logger notification providers (#7290)

* feat: Add support for sendgrid and logger notification providers

* fix: changes based on PR review
This commit is contained in:
Stevche Radevski
2024-05-11 17:40:03 +02:00
committed by GitHub
parent 1a68f4602c
commit 79758c46b6
24 changed files with 631 additions and 1 deletions
@@ -1 +1,2 @@
export * from "./local"
export * from "./logger"
export * from "./sendgrid"
@@ -0,0 +1,4 @@
export interface SendgridNotificationServiceOptions {
api_key: string
from: string
}