feat(server): send mention email (#10859)

close CLOUD-170
This commit is contained in:
fengmk2
2025-03-20 09:26:42 +00:00
parent 5ea65b1709
commit 42745f059d
13 changed files with 323 additions and 7 deletions
@@ -0,0 +1,16 @@
import { Link } from '@react-email/components';
import { Bold } from './template';
export interface DocProps {
title: string;
url: string;
}
export const Doc = (props: DocProps) => {
return (
<Link href={props.url}>
<Bold>{props.title}</Bold>
</Link>
);
};
@@ -1,4 +1,5 @@
export * from './date';
export * from './doc';
export * from './template';
export * from './user';
export * from './workspace';