SMTP Mail asp net help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • johnlim20088
    New Member
    • Jan 2007
    • 74

    SMTP Mail asp net help

    Hi.

    Currrently I implement email function by SMTP in asp net 2.0

    can someone tell me?

    I can send to yahoo.com email address, but WHY i fail send to other custom domain?

    example you@support.com
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Originally posted by johnlim20088
    Hi.

    Currrently I implement email function by SMTP in asp net 2.0

    can someone tell me?

    I can send to yahoo.com email address, but WHY i fail send to other custom domain?

    example you@support.com

    I'm not sure what your problem is.
    Check out this .NET article on how to send an email. If it doesn't help you out, please post more details on what your problem is.

    Thanks

    -Frinny

    Comment

    • johnlim20088
      New Member
      • Jan 2007
      • 74

      #3
      Hi appreciated your replied, thank much..

      my problem is

      i can send email to yahoo.com, hotmail.com

      but cant send to my company email, example my company email is

      john@salesregio n.com

      something like tat..




      Originally posted by Frinavale
      I'm not sure what your problem is.
      Check out this .NET article on how to send an email. If it doesn't help you out, please post more details on what your problem is.

      Thanks

      -Frinny

      Comment

      • Frinavale
        Recognized Expert Expert
        • Oct 2006
        • 9749

        #4
        Originally posted by johnlim20088
        Hi appreciated your replied, thank much..

        my problem is

        i can send email to yahoo.com, hotmail.com

        but cant send to my company email, example my company email is

        john@salesregio n.com

        something like tat..
        Please post the exact error you're receiving and a snippet of the code that you believe is the source of the problem.

        Thanks!

        -Frinny

        Comment

        • Plater
          Recognized Expert Expert
          • Apr 2007
          • 7872

          #5
          I would guess that you are either not validating right, not picking a valid address to send to (or from, smtp is picky like that) or the smtp server you are connected to does not route to other domains.

          If you can give me all the details I might have a better answer. I have been doing nothing but dealing with smtp at my work for the last week

          Comment

          • Frinavale
            Recognized Expert Expert
            • Oct 2006
            • 9749

            #6
            Originally posted by Plater
            I would guess that you are either not validating right, not picking a valid address to send to (or from, smtp is picky like that) or the smtp server you are connected to does not route to other domains.

            If you can give me all the details I might have a better answer. I have been doing nothing but dealing with smtp at my work for the last week
            Hehe, I've been doing nothing but dealing with smtp/proxy problems the last couple days at work too!

            Comment

            • johnlim20088
              New Member
              • Jan 2007
              • 74

              #7
              Hi,

              Following are what I does

              1) on IIS, i add domain for my company domain, it is salesregion.com

              When i sent, have a error box prompt out from my computer mail function.

              it say -> the server are rejected my message



              Originally posted by Plater
              I would guess that you are either not validating right, not picking a valid address to send to (or from, smtp is picky like that) or the smtp server you are connected to does not route to other domains.

              If you can give me all the details I might have a better answer. I have been doing nothing but dealing with smtp at my work for the last week

              Comment

              • Plater
                Recognized Expert Expert
                • Apr 2007
                • 7872

                #8
                Are you AUTHing?
                If you are logging on to say "mail.mydomain. com" chances are pretty could that you have to validate yourself as "AnyValidUser@m ydomain.com" in order to send email.

                I would recomend using telnet (or better yet hyper terminal) to connect to your mail server and going through the steps for send an email and see exactly what the messages are

                Comment

                Working...