infoalloggi-monorepo/apps/infoalloggi/emails/pagamento-conferma.tsx
Marco Pedone 280e0ab5c2 feat: update payment recap links and add new receipt page
- Changed payment recap link in OrdiniModal to point to the new receipt page.
- Added new PaymentRecapPage for displaying receipt details.
- Updated PaymentsTable to set paid_at date based on payment status.
- Introduced manual payment type in PaymentType and updated related strings.
- Refactored getOrdineRicevutaData to use overridableProcedure for access control.
- Enhanced mail sending functionality to include PDF attachments for receipts and conditions.
- Updated PDF generation service to handle new receipt PDF generation.
- Cleaned up context checking utilities by removing unnecessary session checks.
2026-03-04 19:12:01 +01:00

35 lines
900 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>
{/**TODO correggere */}
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
eletnica arriverà separatamente.
</Text>
</Row>
</Section>
</>
</Base>
);
};
export default PagamentoConferma;