feat: add basic webui
This commit is contained in:
17
packages/email/index.tsx
Normal file
17
packages/email/index.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { JSX } from "react";
|
||||
|
||||
export interface SendOptions {
|
||||
from: string;
|
||||
to: string;
|
||||
subject: string;
|
||||
replyTo: string;
|
||||
react: JSX.Element;
|
||||
}
|
||||
|
||||
export const konosend = {
|
||||
emails: {
|
||||
send: async (_props: SendOptions) => {
|
||||
throw new Error('unimplemented');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user