- Implemented FormNewMail for creating new email entries in the queue. - Enhanced AdminPotenziali page layout for better responsiveness. - Added Coda component to manage user email queues, including adding, removing, and clearing emails. - Updated API routes for managing email queue operations, including adding, removing, and clearing user email queues. - Introduced new mail templates and integrated them into the mailer service. - Improved error handling in the email queue controller and service. - Added Zod validation for event IDs in the utility types.
38 lines
1,013 B
TypeScript
38 lines
1,013 B
TypeScript
import { Heading, Row, Section, Text } from "@react-email/components";
|
|
import Base from "./base";
|
|
|
|
export const RecessoMailTag = "recesso";
|
|
const Recesso = () => {
|
|
return (
|
|
<Base preview="Richiesta di recesso">
|
|
<>
|
|
<Heading className="text-center text-3xl leading-8">
|
|
Richiesta di recesso
|
|
</Heading>
|
|
<Section className="px-5 text-left text-base md:px-12">
|
|
<Row>
|
|
<Text>
|
|
Gentile cliente, abbiamo ricevuto la tua richiesta di recesso.
|
|
Procederemo ad elaborare la richiesta e termineremo i servizi
|
|
attualemte attivi nel tuo account.
|
|
</Text>
|
|
<Text>
|
|
Per ulteriori informazioni e chiarimenti non esiti a contattarci
|
|
all'indirizzo{" "}
|
|
<a
|
|
href="mailto:amministrazione@infoalloggi.it"
|
|
rel="noopener noreferrer"
|
|
>
|
|
amministrazione@infoalloggi.it{" "}
|
|
</a>
|
|
</Text>
|
|
<Text>Cordiali saluti</Text>
|
|
<br />
|
|
</Row>
|
|
</Section>
|
|
</>
|
|
</Base>
|
|
);
|
|
};
|
|
|
|
export default Recesso;
|