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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

what does this error mean?

Status
Not open for further replies.

ghassanghellal

Programmer
Jun 23, 2003
18
GB
can someone tell me why when i upload this script in my server and type the url i recieve the following error message.

jmail.SMTPMail error '8000ffff'

The message was undeliverable. All servers failed to receive the message .execute() { Trying server mail:smtp.itprovider.co.uk Error: 451 Requested action aborted: No Valid Recipients <- 220 Matrix SMTP Mail Server v(1.4) on <mailq3.fasthosts.co.uk> Simple Mail Transfer Service Ready -> EHLO fasthosts68 <- 500 Syntax Error, Command Unrecognized EHLO fasthosts68 -> HELO fasthosts68 <- 250 OK -> MAIL FROM:<info@itprovider.co.uk> <- 250 OK -> DATA <- 451 Requested action aborted: No Valid Recipients 1 of 1 servers failed

/jmail2.asp, line 31


my code is

<html>
<head>
<title>w3 JMail rocks</title>
</head>
<body>
<p align=&quot;center&quot;><font face=&quot;Arial, geneva&quot; size=&quot;5&quot;> Email Form</font></p>
<%
Name = Request.Form(&quot;name&quot;)
Subject = &quot;Regarding &quot; & Request.Form(&quot;subject&quot;)
Recipient = Request.Form(&quot;recipient&quot;)
Body = Request.Form(&quot;body&quot;)
Set JMail = Server.CreateObject(&quot;JMail.SMTPMail&quot;)
' Below you should enter your own SMTP-server
JMail.ServerAddress = &quot;smtp.itprovider.co.uk&quot;
JMail.Sender = &quot;info@itprovider.co.uk&quot;
JMail.Subject = Subject
JMail.AddRecipient Recipient
JMail.Body = Body
JMail.Priority = 3
JMail.AddHeader &quot;Originating-IP&quot;, Request.ServerVariables(&quot;REMOTE_ADDR&quot;)
JMail.Logging = True
JMail.Execute
%>
<center>
<font face=&quot;Arial, geneva&quot; size=&quot;3&quot;>
Your email has been sent to <%= Recipient %><br>
</font>
</center>
</body>
</html>
 

____________________________________________________
[sub]The most important part of your thread is the subject line.
Make it clear and about the topic so we can find it later for reference. Please!! faq333-2924[/sub]
onpnt2.gif
 


ghassanghellal,
This site can give you a lot of feedback on errors. simply paste any error you get and do a search on it...



tonycomment.gif

[sup]
.....................................................................................................................
&quot;The secret to creativity is knowing how to hide your sources.&quot;
-Albert Einstein

[/sup]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top