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","dave@blah.com", "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", "dave@blah.com", "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
Copyright 2003 - Contact: Webmaster Last Updated: Monday, March 01, 2010