2026-05-20 10:14:07 +02:00
|
|
|
import { Button, Heading, Row, Section, Text } from "react-email";
|
2025-10-20 17:27:32 +02:00
|
|
|
import { env } from "~/env";
|
2025-08-04 17:45:44 +02:00
|
|
|
import Base from "./base";
|
2026-04-03 11:51:55 +02:00
|
|
|
|
|
|
|
|
export const PagamentoRicezioneMailTag = "pagamentoRicezione";
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-10-20 17:27:32 +02:00
|
|
|
const PagamentoRicezione = () => {
|
2025-08-29 16:18:32 +02:00
|
|
|
return (
|
|
|
|
|
<Base preview="Ricezione Pagamento">
|
|
|
|
|
<>
|
|
|
|
|
<Heading className="text-center text-3xl leading-8">
|
|
|
|
|
Ricezione Pagamento
|
|
|
|
|
</Heading>
|
|
|
|
|
<Section className="px-5 text-left text-base md:px-12">
|
|
|
|
|
<Row>
|
|
|
|
|
<Text>
|
|
|
|
|
Gentile Cliente, le confermiamo la ricezione del pagamento. Le
|
|
|
|
|
invieremo una mail di conferma quando il pagamento sarà stato
|
|
|
|
|
processato.
|
|
|
|
|
</Text>
|
|
|
|
|
</Row>
|
|
|
|
|
<Section className="mb-5">
|
|
|
|
|
<Button
|
2025-10-10 16:18:43 +02:00
|
|
|
className="mx-auto box-border inline-flex h-10 items-center justify-center whitespace-nowrap rounded-md bg-neutral-100 px-4 py-2 text-center align-middle font-semibold text-neutral-900"
|
2025-10-20 17:27:32 +02:00
|
|
|
href={`${env.BASE_URL}/area-riservata/dashboard`}
|
2025-08-29 16:18:32 +02:00
|
|
|
>
|
|
|
|
|
Vai al tuo account
|
|
|
|
|
</Button>
|
|
|
|
|
</Section>
|
|
|
|
|
</Section>
|
|
|
|
|
</>
|
|
|
|
|
</Base>
|
|
|
|
|
);
|
2025-08-04 17:45:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default PagamentoRicezione;
|