It works for me.
If you get the error message
Warning: count(): Parameter must be an array or an object that implements Countable in /home/domains/mydomain.org/wp-content/plugins/email-before-download/includes/class-email-before-download-db.php on line 56
Replace on line 56 in the file class-email-before-download-db.php
if (count($query) > 0) {
with
if (isset($query)) {