import { Heading, Img, Link, Row, Section, Text, } from "@react-email/components"; import { env } from "~/env"; import Base2 from "./base2"; export type ShareAnnunci_NewMail = { mailType: "shareAnnunci"; props: ShareAnnunciProps; }; type ShareAnnunciProps = { nome: string; annunci?: { titolo: string | null; immagine: string | null; codice: string; prezzo: number; }[]; }; //TODO finire const ShareAnnunci = ({ nome, annunci }: ShareAnnunciProps) => { nome = ""; annunci = [ { titolo: "MAROSTICA A 2 KM DAL CENTRO MANSARDA - SUBITO", codice: "4493B", prezzo: 40000, immagine: "5434eb7f088a5b5a", }, { titolo: "MAROSTICA A 2 KM DAL CENTRO MANSARDA - SUBITO", codice: "4493B", prezzo: 40000, immagine: "5434eb7f088a5b5a", }, ]; return ( <> Procedi ora su Infoalloggi.it
Ciao {nome},
Accedi ora al servizio di ricerca Infoalloggi, dove potrai andare a contattare direttamente i proprietari degli immobili disponibili.
Annunci selezionati per te: {annunci?.map((annuncio) => ( <>
{`Annuncio
Codice: {annuncio.codice}
{annuncio.titolo || "N/A"} Prezzo: € {(annuncio.prezzo / 1e2).toFixed(2)} Scheda dell'annuncio →
))}
); }; export default ShareAnnunci;