by Lester 'GaMerZ' Chan
4.5 (11 reviews)
WP-EMail
Allows people to recommend/send your WordPress blog's post/page to a friend.
Tested up to WP 6.7 (Current: 6.9)
v2.69.3
Current Version v2.69.3
Updated 1 year ago
Last Update on 18 Dec, 2024
Synced 14 hours ago
Last Synced on
Rank
#5,029
+8 this week
Active Installs
2K+
-16.9%
KW Avg Position
N/A
—
No change
Downloads
514.1K
+15 today
Support Resolved
0%
—
No change
Rating
90%
Review 4.5 out of 5
4.5
(11 reviews)
Next Milestone 3K
2K+
3K+
611
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 634 more installs to reach 3K+
Rank Changes
Current
#5,029
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 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
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.3
- Last Updated
- Dec 18, 2024
- Requires WP
- 4.6+
- Tested Up To
- 6.7
- PHP Version
- N/A
- Author
- Lester 'GaMerZ' 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
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin
200K+ installs
#256
MW
MW WP Form
200K+ installs
#262
SureMail – SMTP and Email Logs Plugin with Amazon SES, Postmark, and Other Providers
200K+ installs
#266
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(); }
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(); }
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;
How can I show my E-Mail stats?
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.
How can I display the Most E-Mailed Posts?
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.
How can I display the Total E-Mails Sent?
Simply insert this code into your theme:
if (function_exists('get_emails'))
get_emails();
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;
How can I show my E-Mail stats?
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.
How can I display the Most E-Mailed Posts?
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.
How can I display the Total E-Mails Sent?
Simply insert this code into your theme:
if (function_exists('get_emails'))
get_emails();
if (function_exists('get_emails_success'))
get_emails_success();
get_emails_success();
if (function_exists('get_emails_failed'))
get_emails_failed();
get_emails_failed();
Open wp-email.php
Find define('EMAIL_SHOW_REMARKS', true);
Replace with define('EMAIL_SHOW_REMARKS', false);
Find define('EMAIL_SHOW_REMARKS', true);
Replace with define('EMAIL_SHOW_REMARKS', false);
[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.
However, it will still be displayed as normal on a normal post or page view.
Do note that if you are using WP-Print, any text within [donotemail][/donotemail] will not be printed as well.
I made changes to the CSS, how can I keep them from being overridden on the next upgrade?
WP-Email will load email-css.css from your theme's directory if it exists. If it doesn't exist then it will load the default email-css.css that comes with WP-Email. Just move your custom CSS to the appropriate file in your theme directory and it will be "upgrade-proof"
How can I make the E-Mail title different from the post title?
If you add a custom field with the key "wp-email-title" it will be used as the E-Mail title.
How can I set a default or suggested remark for the user?
If you add a custom field with the key "wp-email-remark" it will be placed in the remarks field in the E-Mail form.
The text within [donotemail][/donotemail] will not be displayed when you are emailing a post or page.
However, it will still be displayed as normal on a normal post or page view.
Do note that if you are using WP-Print, any text within [donotemail][/donotemail] will not be printed as well.
I made changes to the CSS, how can I keep them from being overridden on the next upgrade?
WP-Email will load email-css.css from your theme's directory if it exists. If it doesn't exist then it will load the default email-css.css that comes with WP-Email. Just move your custom CSS to the appropriate file in your theme directory and it will be "upgrade-proof"
How can I make the E-Mail title different from the post title?
If you add a custom field with the key "wp-email-title" it will be used as the E-Mail title.
How can I set a default or suggested remark for the user?
If you add a custom field with the key "wp-email-remark" it will be placed in the remarks field in the E-Mail form.