mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-10 08:58:31 +00:00
* Feat: v2 * feat: add chat functionality * First cut: integrations * Feat: add conversation API * Enhance conversation handling and memory management * Feat: added conversation --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
90 lines
2.0 KiB
TypeScript
90 lines
2.0 KiB
TypeScript
import {
|
|
type DeliverEmail,
|
|
type SendPlainTextOptions,
|
|
EmailClient,
|
|
type MailTransportOptions,
|
|
} from "emails";
|
|
|
|
import { env } from "~/env.server";
|
|
|
|
import { logger } from "./logger.service";
|
|
import { singleton } from "~/utils/singleton";
|
|
|
|
const client = singleton(
|
|
"email-client",
|
|
() =>
|
|
new EmailClient({
|
|
transport: buildTransportOptions(),
|
|
imagesBaseUrl: env.APP_ORIGIN,
|
|
from: env.FROM_EMAIL ?? "team@core.heysol.ai",
|
|
replyTo: env.REPLY_TO_EMAIL ?? "help@core.heysol.ai",
|
|
}),
|
|
);
|
|
|
|
function buildTransportOptions(): MailTransportOptions {
|
|
const transportType = env.EMAIL_TRANSPORT;
|
|
logger.debug(
|
|
`Constructing email transport '${transportType}' for usage general`,
|
|
);
|
|
|
|
switch (transportType) {
|
|
case "aws-ses":
|
|
return { type: "aws-ses" };
|
|
case "resend":
|
|
return {
|
|
type: "resend",
|
|
config: {
|
|
apiKey: env.RESEND_API_KEY,
|
|
},
|
|
};
|
|
case "smtp":
|
|
return {
|
|
type: "smtp",
|
|
config: {
|
|
host: env.SMTP_HOST,
|
|
port: env.SMTP_PORT,
|
|
secure: env.SMTP_SECURE,
|
|
auth: {
|
|
user: env.SMTP_USER,
|
|
pass: env.SMTP_PASSWORD,
|
|
},
|
|
},
|
|
};
|
|
default:
|
|
return { type: undefined };
|
|
}
|
|
}
|
|
|
|
export async function sendMagicLinkEmail(options: any): Promise<void> {
|
|
logger.debug("Sending magic link email", {
|
|
emailAddress: options.emailAddress,
|
|
});
|
|
|
|
try {
|
|
return await client.send({
|
|
email: "magic_link",
|
|
to: options.emailAddress,
|
|
magicLink: options.magicLink,
|
|
});
|
|
} catch (error) {
|
|
logger.error("Error sending magic link email", {
|
|
error: JSON.stringify(error),
|
|
});
|
|
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
export async function sendPlainTextEmail(options: SendPlainTextOptions) {
|
|
return client.sendPlainText(options);
|
|
}
|
|
|
|
export async function scheduleEmail(
|
|
data: DeliverEmail,
|
|
delay?: { seconds: number },
|
|
) {}
|
|
|
|
export async function sendEmail(data: DeliverEmail) {
|
|
return client.send(data);
|
|
}
|