uploadify email notification
- by kwek-kwek
Is it possible for "Uploadify" to send out e-mail confirmation after the upload?
here is the script:
<script type="text/javascript">
$(document).ready(function() {
    $("#uploadify").uploadify({
        'uploader'       : 'scripts/uploadify.swf',
        'script'         : 'scripts/uploadify.php',
        'cancelImg'      : 'cancel.png',
        'folder'         : 'uploads',
        'auto'           : true,
        'multi'          : true,
        'onComplete'   : function(event, queueID, fileObj, response, data) {
                         $('#message').html( 'files were successfully uploaded');
                         $('#message').show().animate({'display':'block'},3000).hide(500);
                       }
    });
});
</script>