Ciao a tutti !!!
Stò creando un form per l'invio dei dati via email. Ho creato la pagina in HTML (vedere codice allegato) ma non sò come gestire l'invio della email.
Qualche consiglio ?? Sapete indicarmi qualche guida affidabile ??
### INIZIO CODICE ###
<div class="main">
<p style="margin-top:60px; color:#fff; text-align:center; font-family:'Lato', Calibri, Arial, sans-serif; font-size:18px;">REQUEST FORM</p>
<p style="font-size:15px;text-align:center;">Fill the form and submit us your request.Notice: the field marked (*) are requested information.</p>
<form class="cbp-mc-form">
<div class="cbp-mc-column">
<label for="company">Company</label>
<input type="text" id="company" name="company" placeholder="Azienda S.p.A.">
<label for="name">Contact person</label>
<input type="text" id="name" name="name" placeholder="Mario Rossi">
<label for="position">Position in the company</label>
<input type="text" id="position" name="position" placeholder="Export manager">
<label for="email">E-mail Address</label>
<input type="text" id="email" name="email" placeholder="mario@rossi.it">
</div>
<div class="cbp-mc-column">
<label for="address">Address</label>
<input type="text" id="address" name="address" placeholder="Via E. Mattei,28/30">
<label for="city">City</label>
<input type="text" id="city" name="city" placeholder="Indirizzo">
<label for="country">Country</label>
<input type="text" id="country" name="country" placeholder="Italy">
<label for="phone">Phone Number</label>
<input type="text" id="phone" name="phone" placeholder="Telefono">
</div>
<div class="cbp-mc-column">
<label for="request">Your request</label>
<textarea id="request" name="request" placeholder="I look for..."></textarea>
<p style="font-size:12px;"> This e-mail is strictly confidential.
It is intended for the sole use of the individual or entity to which it is addressed and may contain information that is privileged, confidential and exempt from disclosure under applicable law. You are hereby notified that any dissemination, distribution or duplication of this message by someone else than the intended addressee or its designed agent is strictly prohibited. Should you receive this e-mail by mistake please notify this firm immediately and delete the message from all locations in your computer.</p>
</div>
<div class="cbp-mc-submit-wrap"><input class="cbp-mc-submit" type="submit" value="Send your data" /></div>
</form>
</div>
</div>
### FINE CODICE ###
Grazie in anticipo![]()