problem in sending e mails in reporting server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sukumaster
    New Member
    • Jul 2007
    • 19

    problem in sending e mails in reporting server

    hi,

    i want to send e mail in reporting server (.NET 2005). I can send all reports to a valid
    e mail id but within a particular domain only .It means from gmail.com to gmail.com.But i cant send e mail to other domainsIt means,I cant send e mail from gmail to yahoo and other domains.

    How can i send e mail to all domains?
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    Can you please specify how you are doing all that.

    Comment

    • Plater
      Recognized Expert Expert
      • Apr 2007
      • 7872

      #3
      that usually is the result of not authenticating with the smtp server.

      My smtp server for example, only lets emails go to users in it's own domain if you don't authenticate with it. Once I authenticate to it though, it lets me send emails to where ever I want.

      Comment

      • sukumaster
        New Member
        • Jul 2007
        • 19

        #4
        Thanks for ur information plater.Can u tell me how to aunthenticate SMTP server for sending mails to other domains also.

        Comment

        • Plater
          Recognized Expert Expert
          • Apr 2007
          • 7872

          #5
          Well as a breif bit I just borrowed from someone:
          [code=vbnet]
          Dim client As New SmtpClient("ima p.uk.aol.com", 143)
          'username and password
          client.Credenti als = New Net.NetworkCred ential("my username", "mypassword ")
          [/code]


          There is also this article that may or may not be of help:

          Comment

          Working...