54 lines
1.3 KiB
Plaintext
Executable File
54 lines
1.3 KiB
Plaintext
Executable File
p #{name} #{surname} si è appena Iscritto al Conacreis su #{nomeapp}
|
|
p Con i seguenti dati di accesso:
|
|
span Nome:
|
|
strong #{iscritto.name}<br>
|
|
span Cognome:
|
|
strong #{iscritto.surname}<br>
|
|
span Email:
|
|
strong #{iscritto.email}<br>
|
|
span Codice Fiscale:
|
|
strong #{iscritto.fiscalcode}<br>
|
|
span Indirizzo di Residenza:
|
|
strong #{iscritto.residency_address}<br>
|
|
span Città di Residenza:
|
|
strong #{iscritto.residency_city}<br>
|
|
span Provincia:
|
|
strong #{iscritto.residency_province}<br>
|
|
span CAP:
|
|
strong #{iscritto.residency_zipcode}<br>
|
|
span Nazione:
|
|
strong #{iscritto.residency_country}<br>
|
|
span Data di Nascita:
|
|
strong #{iscritto.dateofbirth}<br>
|
|
span Cellulare:
|
|
strong #{iscritto.cell_phone}<br>
|
|
span Abilita le Newsletter? :
|
|
strong #{iscritto.newsletter_on}<br>
|
|
p <br>Saluti
|
|
|
|
style(type="text/css").
|
|
html, body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
p {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.divbtn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.btn-lg {
|
|
padding: 5px;
|
|
margin: 5px;
|
|
font-size: 26px;
|
|
cursor: pointer;
|
|
color: white;
|
|
background: #027be3 !important;
|
|
border-radius: 28px;
|
|
|
|
}
|