Forum Moderators: coopster
if it's quick then just throw in the email at the end of the upload
maybe something simple like
$to = "test@test.com";
$from .= "From: test@test.com\n";
$from .= "Return-Path: test@test.com\n";
$from .= "Reply-To: test@test.com\n";
$subject = "someone uploaded a new picture";
$message = "someone uploaded a new picture\n\n";
@mail($to,$subject,$message,$from);
just change it to your email, edit the subject and message and that's that