daveigh
Programmer
- Oct 9, 2003
- 105
hi guys, i was able to use jmail successfully before. i reused that old code to fit perfectly to my new form but when i try to test it, it says :
***********************************************************
jmail.SMTPMail error '8000ffff'
The message was undeliverable. All servers failed to receive the message
/register_adv2.asp, line 35
**********************************************************
here is my code...can somebody tell me where i went wrong?
msg_cc = title & " " & name & " has submitted this application form as an advertiser :" & chr(13) _
& " has submitted this request form :<br>" & chr(13) _
& "Company Name : " & companyname & chr(13) _
& "Contact Number : " & phone & chr(13) _
& "Address : " & address & " " & city & " " & state & " " & zipcode & chr(13) _
& "Email : " & email & chr(13) _
& "Website URL : " & url & chr(13) _
& ""
Set msgMail = Server.CreateObject("JMail.SMTPMail")
msgMail.ServerAddress = "mail.dedicatedla.com"
msgMail.ISOEncodeHeaders = False
msgMail.Sender = "inquiry@dedicatedla.com"
'msgMail.AddRecipient "scott.yamano@dedicatedla.com"
msgMail.AddRecipient "dinha@atomflash.com"
msgMail.Subject = "Inquiry from " & name
msgMail.ContentType = "text/html"
msgMail.Body = ""&msg_cc&""
msgMail.Execute ----> line of error
_______________CRYOcoustic_____________
***********************************************************
jmail.SMTPMail error '8000ffff'
The message was undeliverable. All servers failed to receive the message
/register_adv2.asp, line 35
**********************************************************
here is my code...can somebody tell me where i went wrong?
msg_cc = title & " " & name & " has submitted this application form as an advertiser :" & chr(13) _
& " has submitted this request form :<br>" & chr(13) _
& "Company Name : " & companyname & chr(13) _
& "Contact Number : " & phone & chr(13) _
& "Address : " & address & " " & city & " " & state & " " & zipcode & chr(13) _
& "Email : " & email & chr(13) _
& "Website URL : " & url & chr(13) _
& ""
Set msgMail = Server.CreateObject("JMail.SMTPMail")
msgMail.ServerAddress = "mail.dedicatedla.com"
msgMail.ISOEncodeHeaders = False
msgMail.Sender = "inquiry@dedicatedla.com"
'msgMail.AddRecipient "scott.yamano@dedicatedla.com"
msgMail.AddRecipient "dinha@atomflash.com"
msgMail.Subject = "Inquiry from " & name
msgMail.ContentType = "text/html"
msgMail.Body = ""&msg_cc&""
msgMail.Execute ----> line of error
_______________CRYOcoustic_____________