guardate sto codice x inviare una mail
codice:
set mail = server.CreateObject("CDONTS.NewMail")
	'Testo html del corpo della mail
	HTML = "<html>" 
	HTML = HTML & "<head>" 
	HTML = HTML & "<title>Richiesta del " & data & "</title>" 
	HTML = HTML & "</head>" 
	HTML = HTML & "<body bgcolor=""#FFFFFF"">" 
	HTML = HTML & "

<font face=""Verdana"">" 
	HTML = HTML & "Descrizione:" & request.Form("description") & "
"
	HTML = HTML & "Utente assegnato: " & usr & "
"
	HTML = HTML & "Priorità: " & pri & "
"
	HTML = HTML & "Canale: " & can & "
"
	HTML = HTML & "Classificazione: " & cla & "
"
	HTML = HTML & "Fornitore:" & forn & "
"
	HTML = HTML & "</body>" 
	HTML = HTML & "</html>" 
	Mail.From = user
	Mail.to = user & "; " & user_assegn_mail & ", " & fmail
	Mail.Subject = "Richiesta: " & Now()
	Mail.BodyFormat = 0 
	Mail.MailFormat = 0
	Mail.Body = HTML'"Utente assegnato: " & a & "
Priorità: " & b & "
Canale: " & d & "
Classificazione: " & c & "
Fornitore: " & e & "
Descrizione: " & request.Form("description")
			
	Mail.send()
	If err.number <> 0 then
		response.Write("Invio non riuscito: " & err.description)
	else
		response.Write("E-mail inviata con successo")
	end if
	set mail = nothing
non manda nulla

AIUTOOOOO!!!!!