by Lester Chan
4.5 (11 reviews)
WP-EMail
Allows people to recommend/send your WordPress blog's post/page to a friend.
Compatible with WP 7.0.2
v2.69.4
Current Version v2.69.4
Updated 18 hours ago
Last Update on 24 Jul, 2026
Refreshed 14 hours ago
Last Refreshed on
Rank
#5,300
—
No change
Active Installs
1K+
—
No change
KW Avg Position
50.4
-114.6 better
Downloads
516.4K
+213 today
Support Resolved
0%
—
No change
Rating
90%
Review 4.5 out of 5
4.5
(11 reviews)
Next Milestone 2K
1K+
2K+
5,253
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 745 more installs to reach 2K+
Rank Changes
Current
#5,300
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.5
11 reviews
Overall
90%
5
8
(73%)
4
2
(18%)
3
0
(0%)
2
0
(0%)
1
1
(9%)
Tracked Keywords
Showing 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| recommend | 13 | — | Tag | 14 hours ago |
| 26 | — | Tag | 14 hours ago | |
| wp-email | 31 | — | Tag | 14 hours ago |
| 71 | — | Tag | 14 hours ago | |
| 111 | — | Tag | 14 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.69.4
- Last Updated
- Jul 24, 2026
- Requires WP
- 4.6+
- Tested Up To
- 7.0.2
- PHP Version
- N/A
- Author
- Lester Chan
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.5
- Reviews
- 11
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Adminify – White Label, Admin Menu Editor, Login Customizer
7K+ installs
#2,730
Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits
30K+ installs
#988
Contact Form 7
10M+ installs
#3
WP Mail SMTP by WPForms - The Most Popular SMTP and Email Log Plugin
4M+ installs
#12
MC4WP: Mailchimp for WordPress
1M+ installs
#34
Frequently Asked Questions
Common questions about WP-EMail
Yes. Go to WP-Admin -> E-Mail -> Email Options, under SMTP Server, use ssl://smtp.gmail.com:465 if you are using Gmail SMTP.
Open wp-content/themes/<YOUR THEME NAME>/index.php (You may place it in single.php, post.php, page.php, etc also) Find: <?php while (have_posts()) : the_post(); ?> Simply add this code inside the loop where you want the email link to display: if(function_exists('email_link')) { email_link(); }
Many customizations can be made from the options page (WP Admin->E-Mail->E-Mail Options). Additionally, you can override the "E-Mail Text Link for Post" and "E-Mail Text Link for Page" options with the first two parameters of the email_link function like this: if(function_exists('email_link')) email_link( 'E-Mail Text Link for Post', 'E-Mail Text Link for Page'); You can also force email_link() to return the link rather than echo it by setting the third parameter to false: if(function_exists('email_link')) { $email_link email_link( 'E-Mail Text Link for Post', 'E-Mail Text Link for Page', false); } else { $email_link ''; } echo $email_link;
There are two options for this: 1. You can use the included widget by going to Wp-Admin -> Appearance -> Widgets" and using the widget named "Email" 1. You can use a number of included theme functions for displaying various stats. Please continue to read these FAQs for more information.
Simply insert this code into your theme: if (function_exists('get_mostemailed')) get_mostemailed('both', 10); The first parameter is what you want to get, 'post', 'page', or 'both' and defaults to 'both'. The second parameter is the maximum number of posts/pages you want to get.
Simply insert this code into your theme: if (function_exists('get_emails')) get_emails();
Simply insert this code into your theme: if (function_exists('get_emails_success')) get_emails_success();
Simply insert this code into your theme: if (function_exists('get_emails_failed')) get_emails_failed();
Open wp-email.php Find define('EMAIL_SHOW_REMARKS', true); Replace with define('EMAIL_SHOW_REMARKS', false);
If you do not want to email a portion of your post's content, do the following: [donotemail]Text within this tag will not be displayed when emailed[/donotemail] The text within [donotemail][/donotemail] will not be displayed when you are emailing a post or page.