% testoOggetto = request.form("nome") + " ha compilato il modulo informazioni" if request.form("insert") = "true" then set objMail = server.createobject("CDONTS.NewMail") objMail.from =request.form("mail") objMail.to ="info@bestassistant.com" objMail.BodyFormat=1 objMail.MailFormat=1 objMail.subject = testoOggetto objMail.body = request.form("messaggio") objMail.send set objMail = nothing response.redirect("home.asp") end if %>