Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. pop3 mail

pop3 mail

Scheduled Pinned Locked Moved ASP.NET
csharpasp-netcomhelp
5 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    aspnetloves
    wrote on last edited by
    #1

    Hello friends . I have proplem receive mail from my asp.net project. I didnt make how can write codes then I can recive mail using pop3. and attachments I want receive mail and attachment then I will download tihs attachment. Pelase Help me my mail : mugla_vedat@hotmail.com please this is my project helpme.

    C 1 Reply Last reply
    0
    • A aspnetloves

      Hello friends . I have proplem receive mail from my asp.net project. I didnt make how can write codes then I can recive mail using pop3. and attachments I want receive mail and attachment then I will download tihs attachment. Pelase Help me my mail : mugla_vedat@hotmail.com please this is my project helpme.

      C Offline
      C Offline
      Christian Graus
      wrote on last edited by
      #2

      This is a general C# task, it has nothing to do with .NET. Posting your email address is stupid, it will just get you spam. Have you bothered to try google ? If you want to receive mail FROM your ASP.NET project, then you want to send mail. Read my article on how to use google for the answer to that question, and examples of how to use google to answer it.

      Christian Graus Driven to the arms of OSX by Vista. "I am new to programming world. I have been learning c# for about past four weeks. I am quite acquainted with the fundamentals of c#. Now I have to work on a project which converts given flat files to XML using the XML serialization method" - SK64 ( but the forums have stuff like this posted every day )

      A 1 Reply Last reply
      0
      • C Christian Graus

        This is a general C# task, it has nothing to do with .NET. Posting your email address is stupid, it will just get you spam. Have you bothered to try google ? If you want to receive mail FROM your ASP.NET project, then you want to send mail. Read my article on how to use google for the answer to that question, and examples of how to use google to answer it.

        Christian Graus Driven to the arms of OSX by Vista. "I am new to programming world. I have been learning c# for about past four weeks. I am quite acquainted with the fundamentals of c#. Now I have to work on a project which converts given flat files to XML using the XML serialization method" - SK64 ( but the forums have stuff like this posted every day )

        A Offline
        A Offline
        aspnetloves
        wrote on last edited by
        #3

        please send me your link I dint find please help me.

        C B 2 Replies Last reply
        0
        • A aspnetloves

          please send me your link I dint find please help me.

          C Offline
          C Offline
          Christian Graus
          wrote on last edited by
          #4

          The article on how to use google is here on code project. If you can't work out how to search this site for my articles, perhaps the whole thing is just beyond you ?

          Christian Graus Driven to the arms of OSX by Vista. "I am new to programming world. I have been learning c# for about past four weeks. I am quite acquainted with the fundamentals of c#. Now I have to work on a project which converts given flat files to XML using the XML serialization method" - SK64 ( but the forums have stuff like this posted every day )

          1 Reply Last reply
          0
          • A aspnetloves

            please send me your link I dint find please help me.

            B Offline
            B Offline
            bhattiprolu
            wrote on last edited by
            #5

            Hi Check the following code SmtpClient smtpClient = new SmtpClient(); MailMessage message = new MailMessage(); MailAddress fromAddress = new MailAddress(txtEmail.Text); smtpClient.Host = "mail.xyz.com"; smtpClient.Port = 25; message.From = fromAddress; message.To.Add("abc@xyz.com"); message.Subject = "put some subject"; message.IsBodyHtml = false; message.Body = "your body text"; smtpClient.Send(message); put this code under your send button event.

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups