SMTP Authentication Problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Radi Ivanov

    SMTP Authentication Problem

    Hello,

    I am trying to send an e-mail message via code using the following two
    lines:

    *************** *************** *************** *************** ************
    SmtpMail.SmtpSe rver = "smtp.mail.yaho o.com";
    SmtpMail.Send(" Radi@localhost. com", job.EmailAddres s.Trim(), "Job
    Results #" + job.JobID, msg);
    *************** *************** *************** *************** ************

    There is nothing inconsistent with any of the input I am assured of
    this. My dilema sets in when I recieve the following error from
    "smtp.mail.yaho o.com" :

    *************** *************** *************** *************** ************'
    The server rejected the sender address. The server response was: 530
    authentication required - for help go to

    *************** *************** *************** *************** ************'

    How would you use authentication to get past this obstacle?(Yes I did
    look at the help page but found nothing useful)

    Thanks,
    Radi
  • Lau Lei Cheong

    #2
    Re: SMTP Authentication Problem

    Actually, there's discussion on this topic about two weeks ago.

    Of all the links supplied this one seems to be the best reference:


    You can find other hint on using System.Web.Mail in other pages of the site.
    Enjoy!

    "Radi Ivanov" <rivanov@yahoo. com> ???
    news:a88e7b46.0 406041312.22db2 144@posting.goo gle.com ???...[color=blue]
    > Hello,
    >
    > I am trying to send an e-mail message via code using the following two
    > lines:
    >
    > *************** *************** *************** *************** ************
    > SmtpMail.SmtpSe rver = "smtp.mail.yaho o.com";
    > SmtpMail.Send(" Radi@localhost. com", job.EmailAddres s.Trim(), "Job
    > Results #" + job.JobID, msg);
    > *************** *************** *************** *************** ************
    >
    > There is nothing inconsistent with any of the input I am assured of
    > this. My dilema sets in when I recieve the following error from
    > "smtp.mail.yaho o.com" :
    >
    > *************** *************** *************** *************** ************'
    > The server rejected the sender address. The server response was: 530
    > authentication required - for help go to
    > http://help.yahoo.com/help/us/mail/pop/pop-11.html
    > *************** *************** *************** *************** ************'
    >
    > How would you use authentication to get past this obstacle?(Yes I did
    > look at the help page but found nothing useful)
    >
    > Thanks,
    > Radi[/color]


    Comment

    • Radi Ivanov

      #3
      Re: SMTP Authentication Problem

      Thank you so much! I certainly did not find this web page on google, but
      now that I did I will be sure to use it.

      Radi

      *** Sent via Devdex http://www.devdex.com ***
      Don't just participate in USENET...get rewarded for it!

      Comment

      Working...