I would like to have uploadify sending me an email after upload is done.
with uploadify 2.14 I used:
$empfaenger = "[email protected]";
$betreff = "TEST: Upload eines Files";
$from = "From: $empfaenger";
$text = "TEST: Ein File mit dem Namen '$filename' wurde hochgeladen ";
mail($empfaenger, $betreff, $text, $from);
it worked well, but with uploadify 3.2.1 it is not working 100% - I got an email but the filename is mising! how can I get the uploaded file's name into that email? would be grat if the code would work also with uplodifive as well as I would like to purchase that version.
Any ideas?