Hi,
I've installed this hack and on my test account I get the 3 day warning on the 3rd and 4th days, the 5 day on the 5th and 6th etc. I've made some modifications to the script, I hope they are useful to others:
Code:
$day = (int)((($currentday - $user['joindate'])/86400)+0.5)
This casts $day to an integer (rounding .5 up and anything under down)
I think before I was getting a mail when $day was 2.5 and when it was 3.5.
Additionally I've changed the if commands to the form:
Code:
if ($day == 3) // Email users who have not activated after 3 days.
since they will now be exact numbers.