Ciao ragazzi
avrei un favore da chiedere, nn conosco molto l ASP... sto utilizzando questo form molto semplice, con i seguenti campi:
NOME
COGNOME
EMAIL
TELEFONO
MESSAGGIO
codice:
<%
nome =Request.Form("nome")
email = Request.Form("email")
telefono = Request.Form("telefono")
cognome = Request.Form("cognome")
messaggio = Request.Form("messaggio")
Set myMail=CreateObject("CDO.Message")
myMail.Subject = "Messaggio da " & nome &" " & cognome
myMail.From = "email "
myMail.To = "email "
myMail.Bcc = "email "
textbody = "Nuovo messaggio dal sito NomeSito " & vbcrlf
textbody = textbody & "Nome: " & nome & vbcrlf
textbody = textbody & "cognome: " & cognome & vbcrlf
textbody = textbody & "email: " & email & vbcrlf
textbody = textbody & "telefono: " & telefono & vbcrlf
textbody = textbody & "messaggio: " & messaggio & vbcrlf
myMail.TextBody = textbody
myMail.Send()
%>
Come faccio ad aggiungere un checkbox?
Nell'email che arriverà dovrà essere segnato se il cliente ha accettato o no... se ha "fleggato" o meno ...
Grazie!