-----------------------------------------------------------

New Message on BDOTNET

-----------------------------------------------------------
From: Gunjan246
Message 5 in Discussion

 
Hi Sudhir, 
Hope you will find the code below useful. 
The following example demonstrates saving all of the attachments of an email to 
a directory.

 
[C#] 
using System; using aspNetPOP3; using aspNetMime; namespace cstest {    class 
Class1    {               [STAThread]             static void Main(string[] 
args)                 {                       //create a new pop3 object        
              POP3 pop = new POP3("127.0.0.1","[EMAIL PROTECTED]", "mypassword" 
);                                    //connect to the POP3 server              
      pop.Connect();                                          MimeMessage msg = 
pop.GetMessage(1 );                                           //save 
attachments to a directory                       msg.SaveAttachments( 
"c:\\temp\\mydirectory\\", true );                         pop.Disconnect();    
                           //done                  Console.WriteLine( "done."); 
                   Console.ReadLine( );                            }       } }  
 
 
  
[VB.NET]Imports aspNetPOP3 Imports aspNetMime  Module Module1      Sub Main()   
       'create a new pop3 object         Dim pop As New POP3("127.0.0.1", 
"[EMAIL PROTECTED]", "mypassword")          'connect to the POP3 server         
pop.Connect()          Dim msg As MimeMessage = pop.GetMessage(1)          
'save attachments to a directory         
msg.SaveAttachments("c:\temp\mydirectory\", True)          pop.Disconnect()     
     'done         Console.WriteLine("done.")         Console.ReadLine()      
End Sub  End Module  Regards,Gunjan Arora

-----------------------------------------------------------

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]

Reply via email to