My mailing code has been working perfectly for 2 years. Last week I started getting the message:
"jmail.SMTPMail error '8000ffff'
The message was undeliverable. All servers failed to receive the message"
I have not made any changes to my code, and the hosting company has not made any changes to the server.
Any advice?
"jmail.SMTPMail error '8000ffff'
The message was undeliverable. All servers failed to receive the message"
I have not made any changes to my code, and the hosting company has not made any changes to the server.
Any advice?
Code:
[pre]
<%
'//// Include for JMail Component ////
'/// [URL unfurl="true"]http://www.dimac.net[/URL]
emailcomponent="Dimac JMail"
sub sendmail(recipient,replyto,subject,message)
Set JMail = Server.CreateObject("JMail.SMTPMail")
JMail.ServerAddress = smtpserver
JMail.Sender = mailadmin
JMail.Subject = subject
JMail.Body = message
if replyto<>"" then JMail.replyto=replyto
JMail.AddRecipient recipient
JMail.Priority = 1
JMail.Execute
set Jmail=nothing
end sub
%>[/pre]