by turboSMTP
0 (0 reviews)
turboSMTP Email Validator
Email validation tool in WordPress forms registrations using turboSMTP API
Compatible with WP 6.9.4
v1.9.1
Current Version v1.9.1
Updated 4 months ago
Last Update on 02 Dec, 2025
Refreshed 6 hours ago
Last Refreshed on
Rank
#32,392
—
No change
Active Installs
10+
-44.4%
KW Avg Position
20
—
No change
Downloads
915
—
Total downloads
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 20
10+
20+
7,698
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 4 more installs to reach 20+
Rank Changes
Current
#32,392
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
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| email tester | 15 | — | Tag | 2 months ago |
| email validator | 25 | — | Tag | 2 months 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
- 1.9.1
- Last Updated
- Dec 02, 2025
- Requires WP
- 6.0+
- Tested Up To
- 6.9.4
- PHP Version
- 7.0 or higher
- Author
- turboSMTP
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about turboSMTP Email Validator
If the email validation fails, an error message will be displayed, and the user will be prompted to enter a valid email address.
Yes, you can do it. You to use the turbosmtp_email_validator_status_ok filter hook. Below you can see a useful code snippet as example of use (you must to put this in a custom plugin or the functions.php file of your active theme): // Filter by status and sub_status function turbosmtp_custom_email_validator_status_ok( $value, $status, $sub_status ){ if ( $status === 'do_not_mail' && $sub_status === 'role_based_catch_all' ){ return true; } return $value; } add_filter('turbosmtp_email_validator_status_ok', 'turbosmtp_custom_email_validator_status_ok',10, 3);