by Cozy Vision Technologies Pvt. Ltd.
4.6 (35 reviews)
SMS Alert Order Notifications - WooCommerce
A plugin for sending SMS notification after placing orders using WooCommerce
Tested up to WP 6.8 (Current: 6.9)
v3.9.0
Current Version v3.9.0
Updated 2 weeks ago
Last Update on 06 Jan, 2026
Synced 8 hours ago
Last Synced on
Rank
#3,592
-3 this week
Active Installs
4K+
—
No change
KW Avg Position
115.5
—
No change
Downloads
284.7K
+7 today
Support Resolved
0%
—
No change
Rating
92%
Review 4.6 out of 5
4.6
(35 reviews)
Next Milestone 5K
4K+
5K+
170
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 410 more installs to reach 5K+
Rank Changes
Current
#3,592
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.6
35 reviews
Overall
92%
5
30
(86%)
4
1
(3%)
3
1
(3%)
2
0
(0%)
1
3
(9%)
Tracked Keywords
Showing 4 of 4| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| order SMS | 76 | — | Tag | 9 hours ago |
| woocommerce sms integration | 95 | — | Tag | 9 hours ago |
| sms plugin | 145 | — | Tag | 9 hours ago |
| Mobile Verification | 146 | — | Tag | 9 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
- 3.9.0
- Last Updated
- Jan 06, 2026
- Requires WP
- 4.6+
- Tested Up To
- 6.8
- PHP Version
- 5.6 or higher
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.6
- Reviews
- 35
- 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 SMS Alert Order Notifications - WooCommerce
Sender id is only available for transactional account.
I signed up for a demo account, but not received any test sms
As per TRAI Guidelines promotional sms can be sent only from 9 am to 9 pm, please test during this period only, also check if your number is not registered in NDNC registry.
If still you face any issues, please contact our support team.
What will happen when my demo credits are over?
Once your demo credits are finished, this plugin will not send any messages, you can then decide to purchase the credits. In case you do not want to purchase, ensure to disable all OTP options from the plugin, so that your website can function normally.
I am unable to login to my wordpress admin
This can happen in two cases like you do not have sms credits in your sms alert account, or your admin profile has some other number registered, for both cases you can rename the plugin directory in your wordpress plugin directory via FTP, to disable the plugin
Which all countries do you support sms?
Please check complete list of supported countries on our website
Can i send sms to multiple countries from one account?
Yes, you can send sms to multiple countries, by default your account is configured to send SMS to only one country, you can request to allow additional countries for your account through email on support@cozyvision.com.
How can i use my custom variables in sms templates?
The plugin supports custom order post meta, if your post meta key is 'my_custom_key', then you can access it in sms templates as [my_custom_key]
Can i extend the functionality of this plugin?
Sure, you can use our below hooks.
To Send SMS
I signed up for a demo account, but not received any test sms
As per TRAI Guidelines promotional sms can be sent only from 9 am to 9 pm, please test during this period only, also check if your number is not registered in NDNC registry.
If still you face any issues, please contact our support team.
What will happen when my demo credits are over?
Once your demo credits are finished, this plugin will not send any messages, you can then decide to purchase the credits. In case you do not want to purchase, ensure to disable all OTP options from the plugin, so that your website can function normally.
I am unable to login to my wordpress admin
This can happen in two cases like you do not have sms credits in your sms alert account, or your admin profile has some other number registered, for both cases you can rename the plugin directory in your wordpress plugin directory via FTP, to disable the plugin
Which all countries do you support sms?
Please check complete list of supported countries on our website
Can i send sms to multiple countries from one account?
Yes, you can send sms to multiple countries, by default your account is configured to send SMS to only one country, you can request to allow additional countries for your account through email on support@cozyvision.com.
How can i use my custom variables in sms templates?
The plugin supports custom order post meta, if your post meta key is 'my_custom_key', then you can access it in sms templates as [my_custom_key]
Can i extend the functionality of this plugin?
Sure, you can use our below hooks.
To Send SMS
To Modify Parameters before sending any SMS
function modify_sms_text($params)
{
//do your stuff here
return $params;
}
add_filter('sa_before_send_sms', 'modify_sms_text');
To get SMS Alert Service Response after Send SMS
function get_smsalert_response($params)
{
//do your stuff here
return $params;
}
add_filter('sa_after_send_sms', 'get_smsalert_response');
Woocommerce before Send SMS
function public static function modify_sms_text($content, $wc_order_id)
{
//do your stuff here
return $content;
}
add_filter('sa_wc_order_sms_before_send', 'modify_sms_text', 1, 2);
Can you customise the plugin for me?
Please use wordpress support forum for new feature request, our development team may consider it in future updates. Please note we do not have any plans to develop any integrations for any paid plugins, if still you need it someone like you must sponser the update :-)
Where can i find the plugin documenation?
Please refer here for plugin usage guide.
How can I report security bugs?
You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.
function modify_sms_text($params)
{
//do your stuff here
return $params;
}
add_filter('sa_before_send_sms', 'modify_sms_text');
To get SMS Alert Service Response after Send SMS
function get_smsalert_response($params)
{
//do your stuff here
return $params;
}
add_filter('sa_after_send_sms', 'get_smsalert_response');
Woocommerce before Send SMS
function public static function modify_sms_text($content, $wc_order_id)
{
//do your stuff here
return $content;
}
add_filter('sa_wc_order_sms_before_send', 'modify_sms_text', 1, 2);
Can you customise the plugin for me?
Please use wordpress support forum for new feature request, our development team may consider it in future updates. Please note we do not have any plans to develop any integrations for any paid plugins, if still you need it someone like you must sponser the update :-)
Where can i find the plugin documenation?
Please refer here for plugin usage guide.
How can I report security bugs?
You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. Report a security vulnerability.