pop3 mail
-
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.
-
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.
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 )
-
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 )
please send me your link I dint find please help me.
-
please send me your link I dint find please help me.
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 )
-
please send me your link I dint find please help me.
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.