I suppose your server has CDO Mail (which comes with NT) installed. I presume you also have a table with the email addresses of the persons you want to notify of the changes.
Get ready, here's the code (place it in the page where you have your update-query for the DB with the content, right after the actual code to update your DB):
<%
Code to update you contenttable goes here
%>
<%
'First, lets get the connection
Set MyConn=Server.CreateObject("ADODB.Connection"

MyConn.Open "PROVIDER=MSDASQL;" & _
"DRIVER={Microsoft Access Driver (*.mdb)}; " & _
"DBQ=" & server.mappath("MyDatabase.mdb"

MySQL="Select * from TableName"
Set MyRs=MyConn.Execute(MySQL)
'Get the emailaddresses from the recordset and place them in a variable called MyVar:
MyRs.MoveFirst
MyVar= ""
delimiter = ""
do while not MyRs.eof
If Not IsNull(MyRs("email"

) Then
MyVar= MyVar & delimiter & MyRs("email"

delimiter = "; "
End If
MyRs.movenext
loop
'Okay, we have the list of addresses now...
'Let's compose the body
MyBody="Our page has been updated" & vbcrlf & _ "Check it out at
& vbcrlf & "Have fun!" & vbcrlf & "MstrMitch"
'Create the CDO Mail Object
Set objEmail = Server.CreateObject("CDONTS.NewMail"
objEmail.To="someone@somewhere.com"
objEmail.From = "MstrMitch@mydomain.com"
objEmail.Subject = "Update!!"
'Send a blind carbon copy (Bcc) to all the addresses in the MyVar variable
objEmail.Bcc=myVar
objEmail.Body = MyBody
objEmail.Send
'Mail has been send, get rid of the objects
MyRs.close
Set MyRs= Nothing
MyConn.Close
set MyConn=nothing
Set objEmail=Nothing
%>
That's about it... ;-)
<webguru>iqof188</webguru>