import Link from "next/link"; import { Section, Text } from "@react-email/components"; import { getServerUrl } from "@/shared/lib/server-url"; import { SiteConfig } from "@/shared/config/site-config"; import { BaseEmailLayout } from "./utils/BaseEmailLayout"; export default function SubscribtionDowngradeEmail() { return (
Hello, { "We're reaching out to inform you that your account has reverted to our basic access level. This change is due to the recent issues with your premium subscription payment." } { "While you'll still enjoy our core services, access to premium features is now limited. We'd love to have you back in our premium community!" } To reactivate your premium status, simply update your payment information here: Click to Update Payment and Keep Using ${SiteConfig.title} If you have any questions or need assistance, our team is always here to help.
Best,
- {SiteConfig.maker.name} from {SiteConfig.title}
); }