116 lines
4.5 KiB
TypeScript
116 lines
4.5 KiB
TypeScript
import {Heading, Link, Section, Text} from '@react-email/components';
|
|
import * as React from 'react';
|
|
import {EmailLayout} from '../common/EmailLayout';
|
|
import {Footer} from '../common/Footer';
|
|
import {Header} from '../common/Header';
|
|
|
|
interface BillingLimitExceededEmailProps {
|
|
projectName: string;
|
|
projectId: string;
|
|
usage: number;
|
|
limit: number;
|
|
sourceType: string;
|
|
dashboardUrl?: string;
|
|
landingUrl?: string;
|
|
}
|
|
|
|
export function BillingLimitExceededEmail({
|
|
projectName = 'My Project',
|
|
projectId = 'proj_example123',
|
|
usage = 10000,
|
|
limit = 10000,
|
|
sourceType = 'Transactional',
|
|
dashboardUrl = 'https://next-app.useplunk.com',
|
|
landingUrl = 'https://www.useplunk.com',
|
|
}: BillingLimitExceededEmailProps) {
|
|
return (
|
|
<EmailLayout>
|
|
<Header />
|
|
|
|
<Section className="px-8 pb-10 pt-10">
|
|
<Heading className="mb-2 mt-0 text-2xl font-semibold tracking-tight text-gray-900">
|
|
Email sending paused
|
|
</Heading>
|
|
|
|
<Text className="mb-8 mt-0 text-base leading-relaxed text-gray-600">
|
|
Your project <strong className="font-medium text-gray-900">{projectName}</strong> has reached your configured
|
|
monthly billing limit. Email sending has been paused to prevent charges beyond your set limit.
|
|
</Text>
|
|
|
|
<Section className="mb-8 overflow-hidden rounded-lg" style={{border: '1px solid #e5e7eb'}}>
|
|
<Section className="bg-gray-50 px-6 py-4">
|
|
<Text className="mb-0 mt-0 text-xs font-medium uppercase tracking-wider text-gray-500">
|
|
Usage this month
|
|
</Text>
|
|
</Section>
|
|
<Section className="px-6 py-6">
|
|
<Section className="mb-6">
|
|
<Section className="mb-2 flex items-baseline justify-between">
|
|
<Text className="mb-0 mt-0 text-sm text-gray-600">Emails sent</Text>
|
|
<Text className="mb-0 mt-0 text-sm font-medium text-gray-900">
|
|
{usage.toLocaleString()} / {limit.toLocaleString()}
|
|
</Text>
|
|
</Section>
|
|
<Section className="h-2 overflow-hidden rounded-full bg-gray-200">
|
|
<Section className="h-full bg-gray-900" style={{width: '100%'}} />
|
|
</Section>
|
|
</Section>
|
|
<Text className="mb-0 mt-0 text-xs text-gray-500">{sourceType} emails</Text>
|
|
</Section>
|
|
</Section>
|
|
|
|
<Section className="mb-8 rounded-lg bg-red-50 px-6 py-4" style={{border: '1px solid #fca5a5'}}>
|
|
<Text className="mb-0 mt-0 text-sm leading-relaxed text-red-900">
|
|
All email sending is currently blocked. Your usage will reset at the start of next month, or you can
|
|
increase your billing limit to resume immediately.
|
|
</Text>
|
|
</Section>
|
|
|
|
<Heading className="mb-4 mt-0 text-lg font-semibold text-gray-900">How to resume sending</Heading>
|
|
|
|
<Section className="mb-8">
|
|
<Section className="mb-3">
|
|
<Text className="mb-1 mt-0 text-sm font-medium text-gray-900">Increase your billing limit</Text>
|
|
<Text className="mb-0 mt-0 text-sm leading-relaxed text-gray-600">
|
|
Resume sending immediately by adjusting your monthly limit in billing settings
|
|
</Text>
|
|
</Section>
|
|
|
|
<Section className="mb-3">
|
|
<Text className="mb-1 mt-0 text-sm font-medium text-gray-900">Wait for monthly reset</Text>
|
|
<Text className="mb-0 mt-0 text-sm leading-relaxed text-gray-600">
|
|
Your usage will automatically reset at the start of next month
|
|
</Text>
|
|
</Section>
|
|
|
|
<Section>
|
|
<Text className="mb-1 mt-0 text-sm font-medium text-gray-900">Contact support</Text>
|
|
<Text className="mb-0 mt-0 text-sm leading-relaxed text-gray-600">
|
|
Need immediate help? Our team is here to assist you
|
|
</Text>
|
|
</Section>
|
|
</Section>
|
|
|
|
<Section className="mb-6">
|
|
<Link
|
|
href={`${dashboardUrl}/settings?tab=billing`}
|
|
className="inline-block rounded-md bg-gray-900 px-6 py-3 text-sm font-medium text-white no-underline"
|
|
>
|
|
Adjust billing limit
|
|
</Link>
|
|
</Section>
|
|
|
|
<Section>
|
|
<Link href={dashboardUrl} className="text-sm text-gray-500" style={{textDecoration: 'none'}}>
|
|
View project dashboard →
|
|
</Link>
|
|
</Section>
|
|
</Section>
|
|
|
|
<Footer projectId={projectId} landingUrl={landingUrl} />
|
|
</EmailLayout>
|
|
);
|
|
}
|
|
|
|
export default BillingLimitExceededEmail;
|