34 lines
876 B
TypeScript
34 lines
876 B
TypeScript
import { Heading, Row, Section, Text } from "@react-email/components";
|
|
import Base from "./base";
|
|
export type PagamentoConferma_NewMail = {
|
|
mailType: "pagamentoConferma";
|
|
};
|
|
|
|
const PagamentoConferma = () => {
|
|
return (
|
|
<Base preview="Conferma Pagamento">
|
|
<>
|
|
<Heading className="text-center text-3xl leading-8">
|
|
Conferma Pagamento
|
|
</Heading>
|
|
<Section className="px-5 text-left text-base md:px-12">
|
|
<Row>
|
|
<Text>
|
|
Gentile Cliente, la informiamo che il pagamento è stato confermato
|
|
con successo.
|
|
</Text>
|
|
<Text>
|
|
Puoi controllare lo stato del tuo account nella sezione dedicata.
|
|
</Text>
|
|
<Text>
|
|
In allegato troverai una ricevuta di cortesia, la fattura
|
|
elettronica arriverà separatamente.
|
|
</Text>
|
|
</Row>
|
|
</Section>
|
|
</>
|
|
</Base>
|
|
);
|
|
};
|
|
|
|
export default PagamentoConferma;
|