I have this error message while i send a email through a asp in a win2k server. Here's the code.

jmail.Message error '8000ffff'

The message was undeliverable. All servers failed to receive the message


/manager/class_wv.asp, line 109


here is the part of the code that make the message:


set JMail = Server.CreateObject("JMail.Message")
with JMail
.MailServerUserName = "wvo"
.MailServerPassword = "wvo9900"

.FromName = mailFrom
.From = mailFrom
.AddRecipient mailTo
.Subject = mailSubject
.HTMLBody = mailBody
.Send(mailServer)
end with
set JMail = nothing



Thanx