views:

112

answers:

2

I'm using http://phpcodeworks.com/pec/index for a nice User Generated Calendar but it doesn't have the function of sending an email to me when someone posts an event. I'd really like this feature and I really like this calendar.

It's all open source, so you'll be able to play with the code and look at it all.

+1  A: 

Make use of the mail function inside whichever bit of the code handles the creation of new events.

David Dorward
A: 

In the part of the PHP script where creating a appointment is dealt with use PHP's mail function to send an email.

Pez Cuckow