39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { Heading, Row, Section, Text } from "@react-email/components";
|
|
import Base from "./base";
|
|
export type Recesso_NewMail = {
|
|
mailType: "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;
|