use config file instead of env

This commit is contained in:
Milo Schwartz
2024-10-12 18:21:31 -04:00
parent 6fb569e2cd
commit d9ae322e2a
19 changed files with 189 additions and 209 deletions

View File

@@ -6,8 +6,8 @@ import logger from "@server/logger";
export async function sendEmail(
template: ReactElement,
opts: {
from: string;
to: string;
from: string | undefined;
to: string | undefined;
subject: string;
},
) {