1234567891011121314151617181920212223242526272829303132333435363738 |
- 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 (
- <BaseEmailLayout previewText={"Your Premium Access Has Been Paused"}>
- <Section className="my-6">
- <Text className="text-lg leading-6">Hello,</Text>
- <Text className="text-lg leading-6">
- {
- "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."
- }
- </Text>
- <Text className="text-lg leading-6">
- {
- "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!"
- }
- </Text>
- <Text className="text-lg leading-6">To reactivate your premium status, simply update your payment information here:</Text>
- <Text className="text-lg leading-6">
- <Link className="text-sky-500 hover:underline" href={`${getServerUrl()}/account/billing`}>
- Click to Update Payment and Keep Using ${SiteConfig.title}
- </Link>
- </Text>
- <Text className="text-lg leading-6">If you have any questions or need assistance, our team is always here to help.</Text>
- </Section>
- <Text className="text-lg leading-6">
- Best,
- <br />- {SiteConfig.maker.name} from {SiteConfig.title}
- </Text>
- </BaseEmailLayout>
- );
- }
|