1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

ASP Problem.. $$ offered if you can help me FIX this ISSUE

Discussion in 'C#' started by champion510, Mar 7, 2011.

  1. #1
    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..
     
    champion510, Mar 7, 2011 IP
  2. champion510

    champion510 Member

    Messages:
    379
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    35
    #2
    Just bumping thread to see if anyone is willing to help me out. I'm willing to pay for your time.
     
    champion510, Mar 7, 2011 IP
  3. wsrinivas

    wsrinivas Member

    Messages:
    22
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #3
    are you still having this problem as it looks 2 years old?
     
    wsrinivas, Mar 16, 2011 IP
  4. gotlivechat

    gotlivechat Member

    Messages:
    516
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    35
    #4
    What is the line 137 doing? If it doesn't compromise your code include it in a reply post.
     
    gotlivechat, Mar 16, 2011 IP
  5. camjohnson95

    camjohnson95 Active Member

    Messages:
    737
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    60
    #5
    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
     
    camjohnson95, Mar 20, 2011 IP
  6. champion510

    champion510 Member

    Messages:
    379
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    35
    #6
    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
     
    champion510, Mar 22, 2011 IP
  7. camjohnson95

    camjohnson95 Active Member

    Messages:
    737
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    60
    #7
    what was the problem?
     
    camjohnson95, Mar 22, 2011 IP