18 lines
295 B
TypeScript
18 lines
295 B
TypeScript
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');
|
|
},
|
|
},
|
|
};
|