CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2008
    Posts
    47

    Transfer email from company server to public mail system

    Hi, my collegue leaving the company. he is now using company email server, with 1000's mails in inbox/sent etc etc.

    he want to transfer this mail to his laptop to read later using microsoft outlook/ or tansfer to a public free mail provider(google/yahoo ..),

    how can we do it programatically using asp.net/vb.net

    I have access to the compny mail server (ok relay allowed)

    thanks in advanc

  2. #2
    Join Date
    Feb 2000
    Location
    OH - USA
    Posts
    1,892

    Arrow Re: Transfer email from company server to public mail system

    Do you really need to write a program to do this?

    If no:
    1) Just export the mail from Outlook.
    2) Use ExMerge with Exchange (or similar).
    3) Use the 3rd party import tool. Google has an IMAP import routine that will connect to your mail server and extract your email.

    If yes, then it really depends on what software/version you are using for the Email server… but here are some generic approaches:
    1) Again, for Exchange you could write a program to automate ExMerge. There are similar applications for other Email servers as well.
    2) Create an application that connects to your mail server using IMAP/POP3, and extracts the email.
    Good Luck,
    Craig - CRG IT Solutions - Microsoft Gold Partner

    -My posts after 08/2015 = .NET 4.x and Visual Studio 2015
    -My posts after 11/2011 = .NET 4.x and Visual Studio 2012
    -My posts after 02/2010 = .NET 4.0 and Visual Studio 2010
    -My posts after 12/2007 = .NET 3.5 and Visual Studio 2008
    -My posts after 04/2007 = .NET 3.0 and Visual Studio 2005
    -My posts before 04/2007 = .NET 1.1/2.0

    *I do not follow all threads, so if you have a secondary question, message me.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured