reading outlook attachments

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • PIII450@HOME.NL

    reading outlook attachments

    Hi all,

    Does anyone know of a class which will read outlook email messages. I
    need to be able to scan outlook for "non-read" e-mails with a specific
    subject and then save the attachments and mark the e-mail as "read". I
    tried working with the am outlook application COM object but could
    not get it to work.

    If you have another way to do what I want, without human intervention,
    I'm open for suggestions. I't goes without saying I want to be able to
    do it form or with PHP.

    TIA

    Roger
  • Randell D.

    #2
    Re: reading outlook attachments


    <PIII450@HOME.N L> wrote in message
    news:jlr6mv8p1o 5mq85rsbg3ukm02 45or5u14i@4ax.c om...[color=blue]
    > Hi all,
    >
    > Does anyone know of a class which will read outlook email messages. I
    > need to be able to scan outlook for "non-read" e-mails with a specific
    > subject and then save the attachments and mark the e-mail as "read". I
    > tried working with the am outlook application COM object but could
    > not get it to work.
    >
    > If you have another way to do what I want, without human intervention,
    > I'm open for suggestions. I't goes without saying I want to be able to
    > do it form or with PHP.
    >
    > TIA
    >
    > Roger[/color]

    Outlook is a client - your email is originally delivered, and stored on a
    server (which could be a POP3 or IMAP server - they are most popular)
    Outlook is the user agent that you use to retrieve and read your email so
    the fact that you are using Outlook or any other piece of software as a
    client does not relate to your project.

    You need to determine your mail server type first - then either use the POP3
    or IMAP functions that come with PHP, or use something like SquiralMail
    (which I believe is PHP based) to read your email...


    Comment

    • Jochen Daum

      #3
      Re: reading outlook attachments

      Hi Randell!

      On Sun, 14 Sep 2003 00:54:36 GMT, "Randell D."
      <you.can.email. me.at.randelld@ yahoo.com> wrote:
      [color=blue]
      >
      ><PIII450@HOME. NL> wrote in message
      >news:jlr6mv8p1 o5mq85rsbg3ukm0 245or5u14i@4ax. com...[color=green]
      >> Hi all,
      >>
      >> Does anyone know of a class which will read outlook email messages. I
      >> need to be able to scan outlook for "non-read" e-mails with a specific
      >> subject and then save the attachments and mark the e-mail as "read". I
      >> tried working with the am outlook application COM object but could
      >> not get it to work.[/color][/color]

      With COM objects named, he might be talking about Outlook running on
      his server.
      [color=blue][color=green]
      >>
      >> If you have another way to do what I want, without human intervention,
      >> I'm open for suggestions. I't goes without saying I want to be able to
      >> do it form or with PHP.
      >>[/color]
      >
      >Outlook is a client - your email is originally delivered, and stored on a
      >server (which could be a POP3 or IMAP server - they are most popular)
      >Outlook is the user agent that you use to retrieve and read your email so
      >the fact that you are using Outlook or any other piece of software as a
      >client does not relate to your project.
      >
      >You need to determine your mail server type first - then either use the POP3
      >or IMAP functions that come with PHP, or use something like SquiralMail
      >(which I believe is PHP based) to read your email...[/color]

      Something like processing them there seems to me more reasonable as
      well.

      HTH, Jochen
      --
      Jochen Daum - CANS Ltd.
      PHP DB Edit Toolkit -- PHP scripts for building
      database editing interfaces.
      Download PHP DB Edit Toolkit for free. PHP DB Edit Toolkit is a set of PHP classes makes the generation of database edit interfaces easier and faster. The main class builds tabular and form views based on a data dictionary and takes over handling of insert/update/delete and user input.

      Comment

      • PIII450@HOME.NL

        #4
        Re: reading outlook attachments

        Everything is hooked up to an centralized exchangeserver.

        Comment

        • Nikolai Chuvakhin

          #5
          Re: reading outlook attachments

          "PIII450@HOME.N L" <PIII450@HOME.N L> wrote in message
          news:<2vp9mvkfg nenj46a39phcb7l mpq42q5di3@4ax. com>...[color=blue]
          >
          > Everything is hooked up to an centralized exchangeserver.[/color]

          Then access to mail should be possible with a plain old POP/IMAP
          client (whether it's actually POP or IMAP, depends on how Exchange
          Server is configured). There are plenty of POP and IMAP clients
          for PHP; you should be able to find one that will be simple enough
          to build up on.

          Cheers,
          NC

          Comment

          • santoshborse
            New Member
            • May 2006
            • 1

            #6
            outlook mail scanning

            Originally posted by Nikolai Chuvakhin
            "PIII450@HOME.N L" <PIII450@HOME.N L> wrote in message
            news:<2vp9mvkfg nenj46a39phcb7l mpq42q5di3@4ax. com>...[color=blue]
            >
            > Everything is hooked up to an centralized exchangeserver.[/color]

            Then access to mail should be possible with a plain old POP/IMAP
            client (whether it's actually POP or IMAP, depends on how Exchange
            Server is configured). There are plenty of POP and IMAP clients
            for PHP; you should be able to find one that will be simple enough
            to build up on.

            Cheers,
            NC

            Hi,

            If you have POP3 server your mails can be actually stored in your mailbox physically.

            you can you Microsoft COM object to manipulate Outlook email programatically .


            Thanks and Regards,
            Santosh

            Comment

            Working...