"use client"; import { Button } from "@react-email/button"; import { Container } from "@react-email/container"; import { Head } from "@react-email/head"; import { Heading } from "@react-email/heading"; import { Hr } from "@react-email/hr"; import { Html } from "@react-email/html"; import { Link } from "@react-email/link"; import { Section } from "@react-email/section"; import { Tailwind } from "@react-email/tailwind"; import { Text } from "@react-email/text"; import React from "react"; export type Props = { username: string; workspaceName: string; }; export function TrialEnded({ workspaceName = "workspaceName", username = "" }: Props) { return (
Your workspace {workspaceName} has reached the end of its trial. Hey {username}, we hope you’ve enjoyed your two-week Unkey Pro trial for your workspace{" "} {workspaceName}. Your trial ended, add a payment method to keep all features of the pro plan.
When you upgrade to the Unkey Pro plan…it's simple. You get unlimited active keys and verifications:{" "}
  • 250 monthly active keys included (free users get 100 total)
  • 10,000 verifications included (free users get 2,500 per month)
  • Unlimited and free seats to invite your whole team
  • Priority Support
  • 90 days data retention

  • Need help? Please reach out to{" "} support@unkey.dev or just reply to this email. Cheers,
    Andreas
    ); } export default TrialEnded;