I solved the problem with using the WP-Email plugin in the FallSeason theme.  The problem was that when checking to see if there are any posts, several templates (index.php, page.php, and single.php) were checking this way:

if ($posts)

The correct way to check for posts is to do this instead:

if (have_posts())

Changing that one line in those templates solved the problem.  I thought I tried that yesterday when I released the previous version (1.2.drp.1) but apparently I missed something because it works perfectly now.

Resources