arst06d
Programmer
- Nov 29, 2002
- 324
Hi
my website is hosted by Names.co.uk, who took over my original host Smartchoicenet. Ever since the takeover the contact form on my site has not worked.
I'm using cdonts on win2k/iis. Here's the form processing code:
dim strMessage
dim objMail
Set objMail = Server.CreateObject("CDONTS.Newmail"
objMail.To = "webmaster@twarchers.co.uk"
objMail.Subject = "Feedback from WebSite"
objMail.From = "webmaster@twarchers.co.uk"
strMessage = "Senders Name: " & Request.Form("txtName" & vbcrlf
strMessage = strMessage & "Senders Email: " & Request.Form("txtEmail" & vbcrlf
strMessage = strMessage & "Senders Phone: " & Request.Form("txtPhone" & vbcrlf
strMessage = strMessage & "Senders Club: " & request.form("txtClub" & vbcrlf & vbcrlf
strMessage = strMessage & "Type of Contact: " & request.Form("lstFeedback" & vbcrlf
strMessage = strMessage & "Comment: " & Request.Form("txtComment"
objMail.Body = strMessage
objMail.Send
Set objMail = Nothing
Response.Redirect("../mailreceived.asp"
what actually happens is that the mail is sent to webmaster@twarchers.co.uk, but smtp raises an error so the message is bounced back to the sender (also webmaster@twarchers.co.uk). The mailbox for my site is a cath-all thing so anything@twarchers.co.uk should reach me.
I always get the messages posted as an attachment with the error message, so I'm not losing contacts - it's just a bloody pain! The error I get reported is :
Reporting-MTA: dns;server208
Received-From-MTA: dns;server208
Arrival-Date: Tue, 17 Jun 2003 07:52:02 +0100
Final-Recipient: rfc822;webmaster@twarchers.co.uk
Action: failed
Status: 5.0.0
Diagnostic-Code: smtp;553 <webmaster@twarchers.co.uk> not available
I can send messages direct to webmaster@twarchers.co.uk using outlook, and the bounced message reaches me too.
Tech Support at names.co.uk are being no help at all, blaming the rack-space operators, and this has been going on for a couple of months now. Obviously, there's not a lot I can do at my end, but I would appreciate any pointers so I can argue the case that 'something' must have happened in the takeover to suddenly cause these errors.
Many thanks.
my website is hosted by Names.co.uk, who took over my original host Smartchoicenet. Ever since the takeover the contact form on my site has not worked.
I'm using cdonts on win2k/iis. Here's the form processing code:
dim strMessage
dim objMail
Set objMail = Server.CreateObject("CDONTS.Newmail"
objMail.To = "webmaster@twarchers.co.uk"
objMail.Subject = "Feedback from WebSite"
objMail.From = "webmaster@twarchers.co.uk"
strMessage = "Senders Name: " & Request.Form("txtName" & vbcrlf
strMessage = strMessage & "Senders Email: " & Request.Form("txtEmail" & vbcrlf
strMessage = strMessage & "Senders Phone: " & Request.Form("txtPhone" & vbcrlf
strMessage = strMessage & "Senders Club: " & request.form("txtClub" & vbcrlf & vbcrlf
strMessage = strMessage & "Type of Contact: " & request.Form("lstFeedback" & vbcrlf
strMessage = strMessage & "Comment: " & Request.Form("txtComment"
objMail.Body = strMessage
objMail.Send
Set objMail = Nothing
Response.Redirect("../mailreceived.asp"
what actually happens is that the mail is sent to webmaster@twarchers.co.uk, but smtp raises an error so the message is bounced back to the sender (also webmaster@twarchers.co.uk). The mailbox for my site is a cath-all thing so anything@twarchers.co.uk should reach me.
I always get the messages posted as an attachment with the error message, so I'm not losing contacts - it's just a bloody pain! The error I get reported is :
Reporting-MTA: dns;server208
Received-From-MTA: dns;server208
Arrival-Date: Tue, 17 Jun 2003 07:52:02 +0100
Final-Recipient: rfc822;webmaster@twarchers.co.uk
Action: failed
Status: 5.0.0
Diagnostic-Code: smtp;553 <webmaster@twarchers.co.uk> not available
I can send messages direct to webmaster@twarchers.co.uk using outlook, and the bounced message reaches me too.
Tech Support at names.co.uk are being no help at all, blaming the rack-space operators, and this has been going on for a couple of months now. Obviously, there's not a lot I can do at my end, but I would appreciate any pointers so I can argue the case that 'something' must have happened in the takeover to suddenly cause these errors.
Many thanks.