uploadify email notification
Posted
by kwek-kwek
on Stack Overflow
See other posts from Stack Overflow
or by kwek-kwek
Published on 2010-04-12T19:56:14Z
Indexed on
2010/04/12
20:03 UTC
Read the original article
Hit count: 487
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>
© Stack Overflow or respective owner