BTW, I got this whole thing to install fine, but it’s not sending emails. No drop down box on the Write page, and the wp_email_list_future is empty as well, despite me posting several times. Any suggestions?
Hi band
To fix this problem, find email_notification_2.3.1.php and edit it using your favourite text editor. Go to line 369, you’ll see something like this: $check_existing_nrows = mysql_num_rows($check_existing_result);.
Change it to $check_existing_nrows = @mysql_num_rows($check_existing_result);
Find the code on line 372, and add the @ sign in front of the mysql_fetch_assoc, like what we did to the previous line.