Outlook integration in vb.net Web development

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to integrate Outlook into my vb.net web page, so that when I
send an email (which I can successfully do now), it shows up in the sender's
Outlook Sent Items.

How do I do that?

Thanks.
 
You need to use the Office XP Primary Interop Assemblies (PIAs). You probably
will not want to use the Office 2003 PIAs, because if you want to install
them, you have to have Office 2003 with SP1 and the .NET Framework 1.1
installed on your system. You can simply extract the Office XP PIAs and they
are compatible with Office 2000-2003 (I've tested them).

Extract the Office XP PIAs to your project directory, then add a reference
to the one that has the functionality that you need.

You may also want to read this document:
http://support.microsoft.com/?id=840585

If you cannot find the Office XP PIAs anywhere on the web, reply to this and
I will send them to you.
 
You could also use the Microsoft Visual Studio 2005 Tools for the Microsoft
Office System (VSTO 2005), but these require VS2005 and .NET FX 2.0.
 
Back
Top