Files
triggerdotdev--trigger.dev/internal-packages/emails/emails/welcome.tsx
T
2026-07-13 13:32:57 +08:00

52 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Body, Head, Html, Link, Preview, Text } from "@react-email/components";
import { Footer } from "./components/Footer";
import { anchor, bullets, footerItalic, main, paragraphLight } from "./components/styles";
export default function Email({ name }: { name?: string }) {
return (
<Html>
<Head />
<Preview>Power up your workflows</Preview>
<Body style={main}>
<Text style={paragraphLight}>Hey {name ?? "there"},</Text>
<Text style={paragraphLight}>Im Matt, CEO of Trigger.dev.</Text>
<Text style={paragraphLight}>
Our goal is to give developers like you the ability to effortlessly create powerful
workflows in code.
</Text>
<Text style={paragraphLight}>
We recommend{" "}
<Link style={anchor} href="https://app.trigger.dev/templates">
getting started with one of our templates
</Link>{" "}
to get familiar with how Trigger.dev works, and then moving on to create your own
workflows.
</Text>
<Text style={paragraphLight}>
Feel free to reply to me if you have any questions. You can also{" "}
<Link style={anchor} href="https://cal.com/team/triggerdotdev/call">
schedule a call
</Link>{" "}
, or join our{" "}
<Link style={anchor} href="https://discord.gg/JtBAxBr2m3">
Discord server
</Link>{" "}
to connect with the community and our team.
</Text>
<Text style={paragraphLight}>We hope you enjoy using Trigger.dev!</Text>
<Text style={bullets}>Best,</Text>
<Text style={bullets}>Matt</Text>
<Text style={paragraphLight}>CEO, Trigger.dev</Text>
<Text style={footerItalic}>
If you dont want me to contact you again, please just let me know and Ill update your
preferences.
</Text>
<Footer />
</Body>
</Html>
);
}