Automatic notification of new web content

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • dcass

    Automatic notification of new web content

    My company wants to implement a document web server to eliminate some
    paper. Has anyone used a product or developed code that can notify
    users (via email) when new documents have been posted?

    Any ideas will be appreciated.

    Thanks!
  • Mark Kuiphuis

    #2
    Re: Automatic notification of new web content

    That's fairly easy to implement.
    If you are going to upload documents via HTTP-upload (web-form).
    Extend the form-action script which takes care of the actual file-upload
    with the call to the mail() function...

    Mark

    dcass wrote:[color=blue]
    > My company wants to implement a document web server to eliminate some
    > paper. Has anyone used a product or developed code that can notify
    > users (via email) when new documents have been posted?
    >
    > Any ideas will be appreciated.
    >
    > Thanks![/color]

    Comment

    • CountScubula

      #3
      Re: Automatic notification of new web content

      "dcass" <dacass43055@ho tmail.com> wrote in message
      news:1bd4966d.0 403160627.4e963 ce1@posting.goo gle.com...[color=blue]
      > My company wants to implement a document web server to eliminate some
      > paper. Has anyone used a product or developed code that can notify
      > users (via email) when new documents have been posted?
      >
      > Any ideas will be appreciated.
      >
      > Thanks![/color]

      would this be a local server in your company? if so, easy, easy stuff.

      set up a linux box, add a user named: allemployees and create a .forward
      file in /home/allemployees/ and ad one email address per line for each
      employee.

      then you just have the php script fire one email to allemployees and
      sendmail will do the rest.

      --
      Mike Bradley
      http://www.gzentools.com -- free online php tools


      Comment

      Working...