Ho dimenticato il codice che ho sempre usato è:
codice:
SET objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objXMLHTTP.Open "GET", "http://www.sito.com/send_file.asp", false
objXMLHTTP.SetRequestHeader "Content-type", "text/html"
' Recuperi il contenuto HTML della pagina asp
objXMLHTTP.Send
'Istanzi l'oggetto per l'ivio delle email'
Set objMail = Server.CreateObject("CDO.Message")
' Imposti le varie proprietà
objMail.To = Request.Form("email")
objMail.From = "info@sito.com"
objMail.Subject = "Invio eventi"
objMail.HTMLBody = objXMLHTTP.ResponseText
objMail.Send
Set objMail = Nothing
Set objXMLHTTP = Nothing
Che ne dite? Per fare una prova ho riprovato il codice che mi andava, ma ho scoperto che ora mi da lo stesso problema. Come mai il css non viene più interpretato?