···8484 if (params.user.tenantId) return;
85858686 await sendEmail({
8787- from: "Thibault from OpenStatus <thibault@openstatus.dev>",
8787+ from: "Thibault from OpenStatus <welcome@openstatus.dev>",
8888+ reply_to: "Thibault from OpenStatus <thibault@openstatus.dev>",
8889 subject: "Welcome to OpenStatus.",
8990 to: [params.user.email],
9091 react: WelcomeEmail(),
+3-3
packages/emails/emails/followup.tsx
···66 return (
77 <Html>
88 <Head>
99- <title>How's it going with OpenStatus?</title>
99+ <title>How's it going with openstatus?</title>
1010 </Head>
1111- <Preview>How's it going with OpenStatus?</Preview>
1111+ <Preview>How's it going with openstatus?</Preview>
1212 <Body>
1313 Hey
1414 <br />
1515 <br />
1616- Howโs everything going with OpenStatus so far? Let me know if you run
1616+ Howโs everything going with openstatus so far? Let me know if you run
1717 into any issues, or have any feedback, good or bad!
1818 <br />
1919 <br />
+22-15
packages/emails/emails/welcome.tsx
···66 return (
77 <Html>
88 <Head>
99- <title>Welcome to OpenStatus</title>
99+ <title>Welcome to openstatus</title>
1010 </Head>
1111- <Preview>Few tips to get started</Preview>
1111+ <Preview>Few tips to get started with your uptime monitoring</Preview>
12121313 <Body>
1414 Hey ๐
1515 <br />
1616 <br />
1717- I'm Thibault, the co-founder of OpenStatus, the open-source synthetic
1818- monitoring platform. <br />
1717+ Welcome to openstatus <br />
1918 <br />
2019 <br />
2121- Here are a few things you can do with OpenStatus:
2222- <br />- Run your synthetics checks in your{" "}
2323- <a href="https://docs.openstatus.dev/guides/how-to-run-synthetic-test-github-action?ref=email-onboarding">
2424- GitHub Actions
2525- </a>
2020+ Openstatus is global uptime monitoring service with status page.
2121+ <br />
2222+ Here are a few things you can do with openstatus:
2623 <br />- Use our{" "}
2727- <a href="https://docs.openstatus.dev/tools/terraform?ref=email-onboarding">
2828- Terraform provider
2424+ <a href="https://docs.openstatus.dev/cli/getting-started/?ref=email-onboarding">
2525+ CLI
2926 </a>{" "}
3030- to manage your monitors
2727+ to create, update and trigger your monitors.
2828+ <br />- Learn how to monitor a{" "}
2929+ <a href="https://docs.openstatus.dev/guides/how-to-monitor-mcp-server?ref=email-onboarding">
3030+ MCP server
3131+ </a>
3232+ .
3333+ <br />- Explore our uptime monitoring as code{" "}
3434+ <a href="https://github.com/openstatusHQ/cli-template/?ref=email-onboarding">
3535+ template directory
3636+ </a>
3737+ .
3138 <br />- Build your own status page with our{" "}
3239 <a href="https://api.openstatus.dev/v1">API</a> and host it where you
3340 want. Here's our{" "}
3434- <a href="https://github.com/openstatusHQ/astro-status-page?ref=email-onboarding">
4141+ <a href="https://github.com/openstatusHQ/astro-status-page">
3542 Astro template
3643 </a>{" "}
3737- that you can easily host on CloudFlare
4444+ that you can easily host on CloudFlare.
3845 <br />
3946 <br />
4047 Quick question: How did you learn about us? and why did you sign up?
···4249 Thank you,
4350 <br />
4451 <br />
4545- Thibault Le Ouay Ducasse
5252+ Thibault Le Ouay Ducasse, co-founder of openstatus
4653 <br />
4754 </Body>
4855 </Html>
+2-1
packages/emails/src/client.tsx
···3737 try {
3838 const html = await render(<FollowUpEmail />);
3939 const result = await this.client.emails.send({
4040- from: "Thibault Le Ouay Ducasse <thibault@openstatus.dev>",
4040+ from: "Thibault Le Ouay Ducasse <welcome@openstatus.dev>",
4141+ replyTo: "Thibault Le Ouay Ducasse <thibault@openstatus.dev>",
4142 subject: "How's it going with OpenStatus?",
4243 to: req.to,
4344 html,