non potendo utilizzare CDONTS, sono costretto ad usare ASPmail per inviare email.

Ora il codice che uso è questo:

testo= testo & "Strnome: " & nome & chr(13)
testo= testo & "Strcognome: " & cognome& chr(13)
testo= testo & "Strmail: " & email& chr(13)
testo= testo & chr(10) & chr(13)

Set Mail = Server.CreateObject("Persits.MailSender")
mail.host = "www.dominio.it"
mail.from = email
mail.fromname = nome
mail.addaddress "info@dominio.it"
mail.subject = "account"
Mail.body = StrMessaggio
Mail.IsHTML = False

on error resume next
Mail.Send

ma non spedisce nulla
come mai?