Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Jmail error message "jmail.SMTPMail error '8000ffff' The message was undeliverable..."

Status
Not open for further replies.

TribeMan

Programmer
Nov 16, 2009
22
0
0
IL
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?

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]
 
1) What is the replyto parameter set to if it is ""?
2) Can you msgbox the parameters? It might be one of the parameters at fault.
 
you can try using telnet from the server with the same parameters and see if you get any more details which you can use to identify the cause, it could be a config change on the server side.

Greg Griffiths
Livelink Certified Developer & ECM Global Star Champion 2005 & 2006
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top