diff options
author | Raphael Kabo <mail@raphaelkabo.com> | 2025-05-27 19:07:27 +0100 |
---|---|---|
committer | Raphael Kabo <mail@raphaelkabo.com> | 2025-05-27 19:07:27 +0100 |
commit | bc9e983b16d9ac2d27a4458c0a87f9d11aa80c0e (patch) | |
tree | 287e122c66548c4e44995492f044b1f3409516c7 /src/lib/config.ts | |
parent | 69f75005303d634b9208c23068655385734f4d3a (diff) |
Add Mailgun email service
Diffstat (limited to 'src/lib/config.ts')
-rw-r--r-- | src/lib/config.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/config.ts b/src/lib/config.ts index 6642eef..3fd6eb7 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -21,7 +21,7 @@ export interface GathioConfig { email_logo_url: string; show_kofi: boolean; show_public_event_list: boolean; - mail_service: "nodemailer" | "sendgrid" | "none"; + mail_service: "nodemailer" | "sendgrid" | "mailgun" | "none"; creator_email_addresses: string[]; }; database: { @@ -37,6 +37,11 @@ export interface GathioConfig { sendgrid?: { api_key: string; }; + mailgun?: { + api_key: string; + api_url: string; + domain: string; + }; static_pages?: StaticPage[]; } |