33 lines
893 B
TypeScript
33 lines
893 B
TypeScript
import { Heading, Row, Section, Text } from "@react-email/components";
|
|
import Base from "./base";
|
|
export type Interruzione_NewMail = {
|
|
mailType: "interruzione";
|
|
};
|
|
|
|
const Interruzione = () => {
|
|
return (
|
|
<Base noreply preview="Interruzione servizio InfoAlloggi">
|
|
<>
|
|
<Heading className="text-center text-2xl leading-8">
|
|
Interruzione servizio InfoAlloggi
|
|
</Heading>
|
|
<Section className="px-5 text-left text-base md:px-12">
|
|
<Row>
|
|
<Text>Gentile Cliente,</Text>
|
|
<Text>
|
|
Il servizio di ricerca è stato interrotto su tua richiesta,
|
|
pertanto non c'è nessun saldo da effettuare.
|
|
</Text>
|
|
<Text>
|
|
Restiamo a disposizione per qualsiasi necessità, per una nuova
|
|
ricerca o per altre informazioni.
|
|
</Text>
|
|
<Text>Cordiali saluti</Text>
|
|
</Row>
|
|
</Section>
|
|
</>
|
|
</Base>
|
|
);
|
|
};
|
|
|
|
export default Interruzione;
|