I have a problem in one of my client's pages.. Site structure is built and maintained using ASP. Calander portion /Email me a brochure (Submit method) seems to be broken.. Below are the errors that I'm getting on this page. jmail.SMTPMail error '8000ffff' Error: 550 The following recipients could not be sent to: /brochure_request_do.asp, line 137 If you can help me fix this ASAP, please ping me or Mods: Apologize in advance if this is not the right section however I figured this would be simple fix for ASP gurus.. so feel free to move it..
After a quick search it appears that the issue could be caused by trying to send from the SMTP server, without authenticating. You need to specify your username and password to the server in order to send an email. With ASP and CDO this can be done like this: myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'basic (clear-text) authentication myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "email@mydomain.com" myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "password" Code (markup): Where myMail is the CDO object
I figured it out.. thank you guys.. appreciate your help here. If you are interested in on going asp jobs, please don't hesitate to reach out to me