"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; date: string; }; export function PaymentIssue({ username = "username", date = "date" }: Props) { return (
There was an issue with your payment. Hey {username}, We had trouble processing your payment on {date}. Please update your payment information below to prevent your account from being downgraded.
Need help? Please reach out to{" "} support@unkey.dev or just reply to this email. Cheers,
Andreas
); } export default PaymentIssue;