Thanks! I was able to get it installed successfully.
I have one question though about implementation.
Currently wp-email appears OK in my plugins option in my admin panel, and it is enabled.
Next I need to edit index.php in my theme.
I am looking at the doc here.
https://dev.wp-plugins.org/wiki/wp-email/usage
It says that I need to find this line in my theme’s index.php. I am using the POOL them.
<?php while (have_posts()) : the_post(); ?>
Actually I can’t find this line anywhere in my index.php…
Closest I find is this.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
So I went ahead and added this under it, as instructed.
<?php if(function_exists('wp_email')) { email_link(); } ?>
After changing the email settings to use sendmail instead of PHP (php didn’t work for me), everything is working fine.
I did a little more tweaking with index.php to get the EMAIL THIS comment in-line with the Comments link as well, and getting it the same small font, and now everything looks great.
https://www.japannewbie.com
Check it out!
Thanks for the help everyone!
– Harvey