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

jmail email sending problem

Status
Not open for further replies.

daveigh

Programmer
Joined
Oct 9, 2003
Messages
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_____________
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top