This plugin adds the ability to ship SMS to your WordPress through more than than 200 SMS gateways, such every bit Twilio, Plivo, Clickatell, BulkSMS, Infobip, Vonage (Nexmo), Clockworksms, Messagebird, Click ship and much more! Encounter All SMS Gateways

Additionally, you lot tin send SMS/MMS message notifications to your subscribers, users, and WooCommerce customers nearly their orders, new posts, products, and more than.

Watch the video to larn more about the WordPress SMS Plugin!

Main plugin'south characteristic

  • Send SMS/MMS to either your users' numbers or specific numbers
  • Get your users' mobile numbers when they subscribe to your newsletters
  • Send SMS automatically to users and admins in dissimilar situations
  • Increase the security by ii-pace verification
  • Login with your mobile number in case that you forget your password
  • And many more!

This plugin is free. You only need to have an account from ane of the services in the list of gateways we support.

Don't worry, nosotros take tried to cover the best and the most well-known gateways for the plugin. Besides, the Pro version is available too.

Fitur-fitur

  • Supporting more than than 250 SMS gateways! Come across All SMS Gateways
  • Sending SMS/MMS to the mobile number(s), your subscribers and WordPress users
  • Subscribing/Opt-In SMS newsletters and groups
  • Unsubscribing/Opt-Out SMS through widget or URL
  • Sending Activation Codes to subscribers when a new mail is published and besides when subscribers are completing their subscription process
  • Sending Notification SMS to administrators
    • To inform new releases of WordPress
    • When a new user is registered
    • When new comments are posted
    • When users are logged into the WordPress
    • When users are registered to subscribe in forms
  • Integration with Contact Grade vii, WooCommerce, Easy Digital Downloads. Integration with other plugins is too possible in WP SMS Pro version.
  • Supporting Widget/Gutenberg for showing SMS Newsletter Form
  • Supporting WordPress Hooks
  • Supporting WP-Rest API
  • Importing/Exporting Subscribers.
  • Brand short URLs past Bitly.com

PRO Bundle

In the Pro pack, near of the integrations with other plugins and some popular gateways are in the pro pack. User registration verification, WooCommerce Mobile Verification, order notifications, etc.

The list of supported gateways and integrated plugins are bachelor in FAQ.
Purchase Pro Bundle

Terjemahan

WP SMS has been translated in to many languages, for the current list and contributors, delight visit the interpret page.

Translations are done past people simply like you, help make WP SMS bachelor to more than people around the globe and practise a translation today!

Contributing and Reporting Bugs

WP SMS is being developed on GitHub. If you lot're interested in contributing to the plugin, please look at GitHub page.
Donate to this plugin

Plugin ini menyediakan one blok.

  • Subscribe

Installing the WP SMS plugin is similar to installing any other WordPress plugin, the simple way which is recommended is:

  1. Upload wp-sms to the /wp-content/plugins/ directory
  2. Aktifkan plugin melalui card 'Plugins' di WordPress
  3. To display the SMS newsletter form, go to Themes > Widgets, and add a WP SMS Subscribe grade.
  4. If y'all're using the wp-sms-pro as well, don't forget to enter your license key on Pro Pack > General

If you lot need more than information, delight click here.

What gateways are supported in the plugin?

You can see the list of all supported gateways through this link. More gateways are supported in the Pro. The followings are some of pop gateways:

  • Twilio.com
  • Plivo.com
  • Clickatell.com
  • Bulksms.com
  • Infobip.com
  • Vonage.com (Nexmo)
  • Clockworksms.com
  • Messagebird.com
  • Clicksend.com
  • Octopush.com
  • Mitto.ch
  • Smsapi.com
  • Dsms.in
  • Esms.vn
  • Slinteractive.com.au
  • Accomplish-interactive.com
  • Msg91.com
  • Msg360.in
  • Isms.com.my
  • Sms4marketing.it
  • Magicdeal4u.com
  • Alfa-jail cell.com
  • Moceansms.com
  • Global-vocalisation.cyberspace
  • Livesms.eu
  • Ozioma.net
  • Pswin.com
  • Ra.sa
  • Smsfactor.com
  • Textmarketer.co.uk
  • Smslive247.com
  • Sendsms247.com
  • Ssdindia.com
  • Viensms.com
  • Vsms.social club
  • Websms.at
  • Smstrade.de
  • Bulksmshyderabad.co.in
  • Yamamah.com
  • Cellsynt.net
  • Cmtelecom.com
  • Zain.im

What are the differences betwixt Free and Pro Pack versions?

  • User Verification Registration through SMS
  • Scheduled sending SMS
  • Professional support & ticketing
  • More than supported gateways (listed above)
  • Integrations with more plugins every bit listed below:
    • Integration with BuddyPress: Y'all can add mobile number fields to the profile page, send SMS to users when they're mentioned in a post, and ship SMS to users when they comment on a post.
    • Integration with WooCommerce: Order SMS notifications, verify customer mobile number during the checkout, SMS notification to customers and subscribers for new products, SMS notification for administrator when the stock is low, and besides you can send SMS to customers when the order condition is changed.
    • Integration with Gravity forms: The plugin can send SMS to users and Admin after the course is submitted.
    • Integration with Quform: The plugin can send SMS to users or Admin after the class is submitted.
    • Integration with Easy Digital Downloads: Y'all tin can add together mobile number fields to the profile folio, and send SMS to users or Admin when an order is submitted with EDD.
    • Integration with WP Task Manager: You tin add mobile number fields to Chore forms and ship SMS to employers or Admin when a job is requested with WP Chore Manager.
    • Integration with Ultimate Members plugin.
    • Integration with Bitly.com for make the URLs shorter

How to buy?

You can purchase the Pro pack version through this link

PHP v7, v8 Supports?

Yes! WP SMS is compatible with PHP version v5.6 upward to v8

How to transport SMS with PHP?

Employ the below code to send SMS through PHP:

                      $to[] = '01000000000'; $msg = "Your Bulletin"; $is_flash = true; wp_sms_send( $to, $msg, $is_flash );                                          

How to send MMS with PHP?

Utilise the below code to send MMS through PHP:

                      $to[] = '01000000000'; $msg = "Your Message"; $mediaUrls[] = 'https://yoursite.com/image.png'; wp_sms_send( $to, $msg, faux, imitation, $mediaUrls );                                          

How to evidence the SMS subscribe course?

At that place are iii means to show the subscriber class in the theme

  1. By calculation the SMS Newsletter through the Widget into the theme
  2. By adding the SMS Newsletter through the Gutenberg editor

How to apply the Actions?

Run the following action when sending SMS with this plugin:
wp_sms_send

Example: Send emails later sending SMS

                      role send_mail_after_sending_sms($message_info) {     wp_mail('y'all@mail.com', 'Send SMS', $message_info); } add_action('wp_sms_send', 'send_mail_after_sending_sms');                                          

Run the following action when subscribing a new user.
wp_sms_add_subscriber

Example: Send Welcome SMS to users when they are registered.

                      function send_sms_when_subscribe_new_user($name, $mobile) {     $to = array($mobile);     $msg = "How-do-you-do {$proper name}, Thanks for subscribe.";     wp_sms_send($to, $msg); } add_action('wp_sms_add_subscriber', 'send_sms_when_subscribe_new_user', 10, two);                                          

How to use the Filters?

You can use the post-obit filter to change numbers.
wp_sms_from

Case: Add together 0 to the end of the sender number

                      part wp_sms_modify_from($from) {     $from = $from . ' 0';     return $val; } add_filter('wp_sms_from', 'wp_sms_modify_from');                                          

Yous can utilise the following filter to modify the receivers' numbers.
wp_sms_to

Instance: Add new numbers to your numbers

                      function wp_sms_modify_receiver($numbers) {     $numbers[] = '01xxxxxxxx';     render $numbers; } add_filter('wp_sms_to', 'wp_sms_modify_receiver');                                          

Yous can use the following filter to change text messages
wp_sms_msg

Instance: Add signatures to messages that are sent

                      part wp_sms_modify_message($bulletin) {     $message = $message . ' /n Powerby: WP SMS';     return $bulletin; } add_filter('wp_sms_msg', 'wp_sms_modify_message');                                          

Does Information technology Support REST API?

Yep. It does, see https://wp-sms-pro.com/resource-category/api-endpoints/.

How to get the Pro Pack updates?

If you've already the pro pack version, you accept to enter your license key in the setting page to become the updates.

Anyway the plugin supports registering the license primal through wp-config.php

                      define('WP_SMS_PRO_LICENSE', 'your-license-key');                                          

How to unsubscribe a number by URL?

Your subscribers can unsubscribe past URL https://yourdomain.com/?wpsms_unsubscribe=01111111111

How to redirect clients to a specific folio later unsubscribing past URL?

Here is the claw that you need to apply. Just replace XXXXX with desired path.

                      add_action( 'wp_sms_number_unsubscribed_through_url', function($number){     wp_redirect( '/XXXXX' );     exit; } );                                          

How to customize WP SMS?

We tin customize the plugin based on your need. Just visit our Plugin Development Services.

I had a problem with the WP Statistics plugin. I wrote to the developer, they replied immediately and provided text and video assist. The plugin is working once more. Thank you very much!

I submitted a request for a characteristic enhancement that I really needed, and Mohammadreza responded that he idea it was a practiced thought and had the enhancement programmed into the plugin the side by side twenty-four hour period!

i had a problem . i conncted to the support team . after few hours my problem been solved Thank you !

In that location were some bugs out of the box using Twilio and BuddyPress, simply the back up team (Mostafa) was quick at responding and deploying a set to get the plugin working correctly. Thank yous.

They did a great plugin, which I believe they are serious almost their growth. Facing a Twilio Sub-Account problems, then Reza and squad manage to solve the issues. Keep information technology up!

Bully plugin and Awesome Support

Baca semua 79 ulasan

"WP SMS – Messaging & SMS Notification for WordPress, WooCommerce, GravityForms, etc" adalah perangkat lunak open source. Berikut ini mereka yang sudah berkontribusi pada plugin ini.

Kontributor

v5.7.4 – 25.05.2022

  • New: Gateway Hostpinnacle from Kenya
  • New: Gateway Tubelight Communications from India
  • New: Add the possibility to translate the strings in the settings with WPML by custom wpml-config.xml file
  • Improvement: The Mail service SMS notification box when the force send is enabled
  • Improvement: Tweak in admin styles and CSS
  • Comeback: Supported DLT for GatewayHub
  • Bugfix: Go along the mobile number field after updating the profile
  • Bugfix: Showing display spinner when styles are not loaded

v5.7.iii.1 – 07.05.2022

  • Bugfix: An issue in settings folio has been fixed

v5.7.iii – 05.05.2022

  • New: Gateway Espay.id has been added
  • New: Support MMS and %post_thumbnail% variable in send post notification
  • Bugfix: Set separating the numbers by comma and space in send sms page
  • Update: Library intlTelInput updated to v17.0.xvi
  • Update: Add possibility to Gateway.sa to cull the API type (Local or International)
  • Improvement: Delete deprecated subscribers endpoint (see the update notice)
  • Improvement: The newsletter REST-API endpoints have been restructured
  • Improvement: Compatibility of the SMS newsletter course with the Godaddy host provider
  • Improvement: Compatible the intlTelInput with RTL languages
  • Improvement: Possibility to select the mobile country code instead of inbound them

Feature suggestions that are not listed above are welcome!

v5.7.2.2 – 24.04.2022

  • Bugfix: An consequence to annals the schedule event has been fixed
  • Bugfix: The alert wp-editor error has been fixed
  • Update: A new SMS gateway from Latvia (texti.fi) has been added.
  • Update: SMS Gateway VFirst has been removed due to not stability of API

v5.7.2.1 – 15.04.2022

  • Bugfix: The warning error in settings folio when the groups empty
  • Improvement: Improvement license updater

v5.7.2 – 12.04.2022

  • Characteristic: The Add-Ons page added! Checkout New Add-Ons!
  • Feature: The SMS Stats dashboard widget has been added!
  • Characteristic: The Inbox folio added!
  • Characteristic: Add new power to cull the specific groups to testify on SMS newsletter widget
  • Improvement: Supported short URL in generateUnSubscribeUrlByNumber() role.
  • Improvement: The register setting folio has been improvement
  • Improvement: Clean up admin styles, scripts, and improvements structure as well
  • Improvement: Compatibility of the request() method with PHP v8.0
  • Improvement: The Integration tab is renamed to Contact form vii and also the basic options (WooCommerce and EDD) accept been removed since they are bachelor in the Pro pack also
  • Improvement: The mobile country code functionality has been improved.

v5.7.1 – 16.03.2022

  • Bugfix: The issue in media URLs Residue API request fifty-fifty the asking doesn't take the media URL
  • Bugfix: Separating numbers outcome has been stock-still in some gateways
  • Feature: New action wp_sms_number_unsubscribed_through_url has been added
  • Feature: New method request() has been added
  • Improvement: Minors and a couple of typos

v5.7 – 07.03.2022

  • Characteristic: New Design for Ship SMS page!
  • Feature: New filters wp_sms_user_mobile_field and wp_sms_user_mobile_number has been added.
  • Feature: The Mail service SMS Notification also supports groups and custom numbers also
  • Feature: Bitly Curt URL is also supported in Send SMS folio
  • Characteristic: Endpoint /wp-json/wpsms/v1/send now supports new parameters. See API document
  • Improvement: The functionality of getting user's mobiles
  • Improvement: Update strings and fixed some typos
  • Improvement: Admin Styles updated and fixes a couple of problems in RTL languages and responsive style also.
  • Improvement: Compatibility the "Post SMS Notification" with WP-Residuum, WP-CLI, and other plugins
  • Bugfix: Gateways UwaziiMobile updated.
  • Bugfix: Fix unsubscribing the numbers with mobile state lawmaking through URL
  • Bugfix: Compatibility a bunch of gateways with one-time PHP versions

v5.six.9 – 16.02.2022

  • Improvement: The SureSms gateway now supports the Sender ID and Flash
  • Improvement: Compatible the Post SMS Notification with WP-REST API
  • Improvement: The Force to Post SMS Notification and default Subscribe group options added
  • Improvement: Improvements widget and admin styles
  • Improvement: Transport flash SMS enabled for eBulkSms.com
  • Comeback: Ship flash SMS disabled for Africa's Talking

v5.six.viii.1 – 09.02.2022

  • Characteristic: Add specific roles option for User login notification
  • Bugfix: Compatibility the setting page with PHP v7.2

v5.six.8 – 02.02.2022

  • Update: Tested up to v5.9
  • Update: The SMS Newsletter widget is comeback and redesigned and also is Block based right now! you tin can likewise load the SMS Newsletter in Gutenberg editor!
  • Bugfix: An issue with the old version of PHP with the setting folio.
  • Improvement: Some typo in the response of requests has been fixed.
  • Deprecate: Part wp_sms_subscribes(). load the SMS newsletter form through Widget or Gutenberg instead.
  • Remove: Shortcode [wp-sms-subscriber-form] is removed.

v5.6.seven – 21.01.2022

  • Bugfix: The line break issue has been fixed
  • Bugfix: The error in webSMS gateway has been fixed
  • Improvement: Compatibility the setting page with the older version of PHP.

v5.half dozen.6 – fifteen.01.2022

  • Feature: Bitly Short URL has been added in the settings page > feature
  • Update: Compatibility the Setting page with QuForm Child Elements and groups fields and minor improvements.
  • Update: Better naming fields for GravityForms variable fields
  • Updated gateway.sa gateway
  • Updated uwaziimobile gateway

v5.six.5.2 – 10.12.2021

  • Improvement: A notice error has been fixed in the setting folio.
  • Improvement: Compatibility with the older version of PHP.

v5.6.v – 07.12.2021

  • Characteristic: Selecting the several user groups on send SMS page has been supported
  • Bugfix: The postal service blazon & author notification issue has been stock-still
  • Enhancement: The setting pages & styles improvement, savour the new admin interface!
  • Update: Pro settings folio merged to the main settings page

v5.6.4 – 14.11.2021

  • Bugfix: Getting credential in ExpertTexting gateway has been fixed
  • Bugfix: Detect errors in OnewaySms gateway has been stock-still
  • Enhancement: Pocket-size improvements

v5.half-dozen.3 – 22.10.2021

  • Feature: Supported Unsubscribing/Opting-Out past URL! the subscribers tin can Opting-Out by https://yourdomain.com/?wpsms_unsubscribe=01111111111
  • Enhancement: Fixed a notice error in notification class
  • Enhancement: Added the document link in settings
  • Update: Added the MT URL and Credit Balance URL to OneWaySMS gateway
  • Update: Added Callifony (Zen.ae) gateway

v5.vi.2 – 02.10.2021

  • NEW: MMS supported! now the plugin supports sending MMS, the Twilio & Plivo gateways are supports at the moments.
  • Update: Added the argument $mediaUrls to wp_sms_send() function.
  • Update: Power to modify the admin tabs by using the wpsms_pro_settings_tabs and wpsms_settings_tabs filters.
  • Update: The called library replaced with select2.
  • Bugfix: The issue for sending the SMS while publish a new post has been fixed.
  • Enhancement: For getting the correct local fourth dimension, used the current_datetime() instead of current_time().

5.half dozen.1

  • Updated Adept Texting gateway's fields
  • Updated setting page and fixed some tweak misspellings
  • Added BareedSMS gateway in the setting page
  • Added Mobishastra gateway in the setting page
  • Added Zipwhip gateway in the setting page
  • Added post type option in the published new posts notification
  • Fixed Encode message in WaApi Gateway
  • Fixed the conflict issue with newsletter settings filter name
  • Fixed an result to unsubscribe the number in REST API
  • Comeback the license settings functionality

5.5.1

  • Stock-still showing right license status outcome in the plugin's admin header
  • Fixed ExpertTexting gateway

5.5

  • New admin design
  • Added multiple sending SMS to CF7 field
  • Added Mitto SMS gateway
  • Fixed some sanitization problems in input data.
  • Fixed separating the numbers issue in the send SMS page
  • Updated msegat.com and reach-interactive gateways (Please re-configure your gateway once again)

5.4.thirteen

  • Updated Unifonic gateway
  • Improvement of some inputs on the admin and sanitizes. (Special thank you to WPScan.com)

5.iv.12

  • Fixed wrong sanitize data type on CF7 functionality.
  • Minor improvements

5.four.xi

  • Compatibility with WordPress v5.8
  • Updated SMSBox.be, moved to free version
  • Improvement sanitizing input

five.iv.10

  • Updated ExpertTexting gateway, the API call to correspond to the current API for ExpertTexting. Needed to use api_secret instead of api_password and the from= should non be an empty string.
  • Comeback: Replaced all Gyre with WordPress HTTP API functions
  • Fixed a couple of bug on loading the files, sanitizing things and etc.

5.four.nine.1

  • Fixed Sanitize some input data in admin screens

5.four.nine

  • Implemented dynamic gateway setting fields based on the current gateway'due south form.
  • Added global-voice.net gateway.
  • Added jawalbsms.ws gateway.

5.four.8

  • Added dexatel.com
  • Fixed an upshot in smssolutionsaustralia.com.au

5.4.vii

  • Fixed some tweak issues in applying country code and user registration functionality.
  • Added a new choice to make verify_mobile field optional
  • Added WaApi gateway
  • Added newsletter method in the main class to accessible from by WPSms()->newsletter();

v.4.6

  • Fixed an issue to verify the subscriber in the SMS newsletter widget.

five.iv.v

  • Added a new filter wp_sms_admin_notify_registration for admin receivers mobile numbers in registration new user
  • Added a new property $documentUrl in gateways' class
  • Added some useful certificate link in the setting page
  • Added functionality in the subscriber'southward list to update multi subscribers group
  • Added group id cavalcade in the groups' tabular array
  • Added Singleton functionality to initial the plugin and added WPSms(); function to go an instance of the plugin

5.4.four

  • Added smssolutionsaustralia.com.au SMS gateway
  • Added a new choice in the Admin > Subscribers to alter the number of items per page
  • Fixed group result on SMS subscribe class
  • Updated reach-interactive API URL
  • Comeback small-scale tweak

5.four.3

  • Updated the gateways list and fixed some incorrect names.
  • Added Octopush.com gateway
  • Added SlinterActive.com.au gateway
  • Fixed sending the welcome message for new SMS subscriber.

5.four.2

  • Added onewaysms.com.my gateway
  • Update kavenega gateway
  • Compatibility with WordPress v5.6

5.4.1

  • Added Accomplish-Interactive gateway
  • Added Msegat gateway
  • Fixed encoding effect in Altiria gateway
  • Removed The welcome page
  • Comeback gateways' countries listing.
  • Comeback Minor

five.iv

  • Added New SMS gateways in the plugin (unifonic.com, comilio.information technology, malath.net.sa, altiria.cyberspace, and oxemis.com)
  • Added A new option in the setting folio for cleaning the numbers.
  • Added Newline support for numbers in sending SMS folio.
  • Added Auto-submit the gateway while changing the gateway dropdown.
  • Improvement Appending country code to numbers.
  • Improvement Gateways and setting pages.
  • Improvement CSS and admin notice with the new version of WordPress.

5.iii.1

  • Added: malath.net.sa gateway.
  • Added: safa-sms.com gateway.
  • َUpdated: some old gateways.

5.three

  • Added: eazismspro.com gateway.
  • Added: sms.net.gr gateway.
  • Added: New option for cropping message in SMS post notification.
  • Added: SMS meta box in custom post types.
  • Updated: Mobile field in the registration grade. Information technology has required.

5.ii.ii

  • Added: Eazismspro.com gateway
  • Improvement: Mobile field number is required in the registration form
  • Updated: Dynamic the number of the word for cropping in send mail notification
  • Updated: Display gravity form fields tags in settings

v.two.1

  • Comeback: CF7 integration, now the dropdown field is supported.
  • Updated: ms77.de gateway.

5.ii

  • Added: The from parameter in wp_sms_send().
  • Added: Sunwaysms.com gateway.
  • Updated: New API for Sms Gateway Center.
  • Updated: MTarget's gateway.
  • Updated Sunwaysms.com gateway.
  • Disabled: The check credit in ship sms page.

five.one.nine

  • Stock-still: gateways list.
  • Fixed: scheduled characteristic class loading.
  • Updated: Mobtexting gateway.
  • Small improvements.

5.one.8

  • Added: cheapglobalsms.com gateway.
  • Minor improvements.

5.1.seven

  • Added: easysendsms.com gateway.
  • Added: 1s2u.com gateway.
  • Pocket-sized improvements.

5.ane.half dozen

  • Stock-still: WordPress core update notification discover.
  • Fixed: Screen options columns for only Privacy Page.
  • Stock-still: Outbox orderby showing records.
  • Added: Oursms.cyberspace Gateway.
  • Added: Eurosms.com gateway.
  • Improved: Newsletter Widget/Shortcode.
  • Minor improvements.

5.1.five

  • Stock-still: Enqueue styles prefix and suffix.
  • Improved: Gear up the edit group problem with space in grouping name.
  • Updated: Database tables field.
  • Updated: Experttexting gateway.
  • Minor improvements.

5.ane.4

  • Added: Organisation info page to get more than data for debugging.
  • Improved: Check credits.

v.1.3

  • Minor improvements.

5.1.two

  • Add together: Alchemymarketinggm.com – Africa gateway.
  • Update: dot4all.it gateway now available on costless version.
  • Update: gatewayapi.com to support Unicode.
  • Improved: Response condition and Credits to do not save issue if is object.
  • Stock-still & Improvement: Gateways: 18sms, abrestan ,adspanel, asr3sms, avalpayam, bandarsms, candoosms, iransmspanel, joghataysms, mdpanel, mydnspanel, nasrpayam, payamakalmas, ponishasms, sadat24, smsde, smshooshmand, smsmaster, smsmelli, smsservice, suresms, torpedos, yashilsms, smsglobal

5.1.1

  • Optimized: The main structure of the plugin and split process to increase operation and load.
  • Updated: primotexto.com to let multiple number sending.
  • Fixed: loading card pages content on different languages.
  • Fixed: send SMS course style with some other plugins.
  • Fixed: websms.com.cy, textplode.com, 0098sms.com, 18sms.ir, 500sms.ir, ebulksms.com gateways.

five.one

  • Added: Collapse for toggle the visibility of response cavalcade on Outbox table.
  • Added: A new template function for sending SMS wp_sms_send( $to, $msg, $is_flash = false ).
  • Improved: Primotexto.com gateway.
  • Stock-still: Issue in Textplode.com gateway.
  • Fixed: Outcome in WooCommerce class for sending SMS.

five.0

  • Added: The new selection for disabling CSS loading the theme.
  • Added: A new tab in Settings that for manage SMS Newsletter, the options removed from SMS newsletter widget.
  • Added: A new shortcode for show SMS newsletter form. enjoy with this shortcode [wp-sms-subscriber-course].
  • Added: A new pick for sending an SMS to the Author of the post when that post publish and the author have not the publish capability.
  • Added: Status and Response columns in outbox page and get the total log on sending SMS actions.
  • Added: Support mobile fields with International Telephone Input optional.
  • Added: Zain.im Gateway.
  • Added: Textmagic.com Gateway.
  • Optimized: The main structure of the plugin and split process to increase performance and load.
  • Improved: The SMS newsletter requests. We've used the WP REST API instead Admin Ajax.
  • Improved: At present y'all tin can allow to importing the same number into two dissimilar groups.
  • Improved: The styles of admin forms, We've used the ThickBox for managing forms and metabox style for send SMS form.
  • Improved: Some queries to get data.
  • Improved: The export subscriber result.
  • Updated: The SMS Global gateway to the latest version of API.
  • Updated: Primotexto gateway.
  • Updated: Message type for gateway Comilio.it.

4.1.ii

  • Compatible with v5.0

4.i.ane

  • Fixed: Issue to saving options.
  • Added: Ignore duplicate subscribers if that exist to another group in the import page.
  • Added: Aradpayamak.internet gateway.
  • Updated: The styles of admin forms.

4.one

  • Added: a new checkbox in the SMS subscription grade for GDPR compliance.
  • Added: Privacy menu in the plugin for Import & Export the user data for GDPR compliance. read the weblog post to get more than data.
  • Added: SMS Sending feature to unlike roles in Ship SMS Page.
  • Added: mobiledot.net.sa and smsnation.co.rw gateways.
  • Added: multi-site support in WordPress Network.
  • Updated: fortytwo.com, idehpayam.com, onlinepanel.ir and mobile.net.sa gateways
  • Updated: the setting page.
  • Disabled applyUnicode hood past default
  • Stock-still: the issue of receiving fields from Gravityforms.

4.0.21

  • Added: engy.solutions and aruba.it and hiro-sms.com gateways.
  • Added: new choice for sending Unicode for not-English characters (such as Western farsi, Arabic, Chinese or Cyrillic characters).
  • Added: sender ID field. Allow typing of sender ID in Admin Send SMS page.
  • Stock-still: issue to send SMS through CF7 in PHP v7.0 and v7.i

4.0.xx

  • Added: land code to prefix numbers if this option has value on the setting page.
  • Updated: setting folio. Added options for Awesome Support plugin.

4.0.19

  • Added: tripadasmsbox.com, suresms.com, verimor.com.tr gateway.

4.0.eighteen

  • Added: Uwaziimobile.com and cpsms.dk Gateway.
  • Updated: settings page fields.

iv.0.17

  • Important: Updated the domain name of the Plugin website to wp-sms-pro.com

4.0.16

  • Added: Send SMS to multi numbers in the Contact Form seven.
  • Added: Several gateways. (Comilio.it, Mensatek.com, Infodomain.asia, Smsc.ua and Mobtexting.com)
  • Fixed: Show time items in the outbox SMS.

iv.0.15

  • Updated: option fields.
  • Added: sabanovin.com gateway.

iv.0.14

  • Updated: setting folio styles.
  • Disabled gateway cardinal field if non available in the current gateway.
  • Fixed: issue in text_callback method on the options library. Used isset to skip undefined error.

4.0.13

  • Added: default variable for sender_id in the Gateway class.
  • Added: textanywhere.net, abrestan.com and eshare.com Gateway.
  • Updated: Pro Bundle options. (Added WP-Job-Manager fields).

4.0.12

  • Added: Experttexting.com Gateway.
  • Added: Spirius.com Gateway.
  • Added: Msgwow.com Gateway.
  • Updated: NuSoap library. Compatible with PHP five.four – 7.1
  • Removed: local translations and moved to interpret.wordpress.org.
  • Fixed: issue in cf7 class when the fields has array data.

iv.0.eleven

  • Added: EbulkSMS Africa Gateway.
  • Add option for hide account balance in send SMS page.
  • Updated: UI for send SMS page.
  • Updated: afilnet.com gateway
  • Updated: smsgatewayhub.com gateway
  • Updated: Asanak gateway
  • Fixed: consequence in importer library. The carve up() deprecated and used preg_split().

iv.0.ten

  • WordPress iv.8 compatibility
  • Updated: unisender gateway
  • Added: smsozone.com gateway
  • Added: Character Count in the send sms folio

iv.0.9

  • Fixes issues in some gateways
  • Supported gatewayapi.com, primotexto.com, 18sms.ir in the gateways list
  • Removed: car text direction script admin send bulletin

iv.0.8

  • Fixes undefined error in pro package setting page
  • Fixes and improvements newsletter widget
  • Added: new characteristic in sms newsletter. the subscribers tin submit their mobile in multi groups
  • Added: several gateways (kavenegar.com, itfisms.com, pridesms.in, torpedos.top, resalaty.com)

four.0.7

  • Added: websms.com.cy gateway
  • Added: smsgatewayhub.com gateway
  • Added: africastalking.com gateway
  • Added: variable data to EDD message pick
  • Fixed: unisender gateway issue
  • Fixed: duplicate send sms in the notification post

iv.0.half-dozen

  • Improvement: plugin to initial the gateways
  • Updated: German translations. Thank you Robert Skiba
  • Added: asr3sms.com gateway

4.0.5

  • Fixed: path to the nusoap class on some gateways Thanks nekofar
  • Fixed: transport sms time in database
  • Fixes including gateways grade mistake when the class was not in the plugin

4.0.four

  • Fixes dissabled options.

4.0.three

  • Supported WP REST API
  • Improvements settings page and used main plugin for settings handler
  • Updated: arabic translations. (Thanks Hammad)

4.0.two

  • PHP 7.1 compatibility
  • Added: mobile number checker in register and update profile page for avoid to duplicate mobile numbers
  • Added: post_content to the post notification input data. (Supported until 10 words due for restrictions in some gateways)
  • Inverse title_post, url_post, date_post to post_title, post_url, post_date on mail service notification input data.
  • Fixed: Spelling mistakes in linguistic communication file.

4.0.1

  • Fixed: default gateway consequence.
  • Fixed: Illegal error in cf7 sms meta box.

4.0

  • Of import! Please keep your gateway data earlier updating/installing (username, password or anything). Considering in this version used a new setting folio.
  • Added: setting form for all options in the plugin for better settings operation.
  • Added: new classes for doing whatsoever proccess.
  • Added: resalaty.com gateway.
  • Added: return request in the gateway tab on the selection page for get any message of the asking.
  • Added: WP_Error in the all gateway classes.
  • Added: ‌Bulk send condition in the gateway tabs on the setting page.
  • Added: response gateway message after sending sms on the sending page.
  • Removed: newsletter tabs from option folio and moved all pick on the newsletter widget.
  • Improvement: options page and removed all detect errors in setting folio.
  • Improvement: all syntax for detect errors.
  • Improvement: main class.
  • Fixed: load template widget in admin.
  • Fixed: widget plugin name (Of import! later update, re-add SMS newsletter form widget in your theme)
  • Fixed: notice error in cf7 editor panel, used id() method instead.
  • Removed: function: wp_subscribes.

iii.2.iv

  • Compatible with WP four.seven
  • Fixes issue when enable plugin to add together new cap.
  • Fixes issue (Missing $this->validateNumber on the default gateway class)
  • Fixes issue (Missing $user->ID in mobile field when create new user)
  • Improvement: construction files, folders and cleaning codes.

3.2.3

  • Language french added. thanks yves.le.bouffant@libertysurf.fr

iii.two.3

  • Added: fortytwo.com gateway.
  • Added: parsgreen (api.ir) gateway.
  • Compatible up to wordpress 4.6
  • Fixes Undefined alphabetize fault in plugin pages
  • Updated: textplode gateway.

3.2.2

  • Added: new gateway (springedge.com)
  • Added: new gateway (textplode.com)
  • Added: new gateway (textplode.com)
  • Linguistic communication (Brazil) updated.

iii.two.i

  • Added: New gateway (sonoratecnologia.com.br).
  • Removed: dashicons from WP_List_Table.

3.2

  • Added: New capabilities: wpsms_sendsms, wpsms_outbox, wpsms_subscribers, wpsms_subscribe_groups and wpsms_setting to user roles for manage folio access.
  • Added: New filters wp_sms_from, wp_sms_to, wp_sms_msg in the plugin.
  • Added: New gateway (bulutfon.com).
  • Added: New gateway (iransms.co).
  • Added: New gateway (arkapayamak.ir).
  • Added: New gateway (chaparpanel.ir).
  • Fixed: issue when you rename wp-content folder. now plugin it'due south work if the binder name does not wp-content.
  • Fixed: Undefined index errors in ths plugin when wordpress debug is enable.
  • Fixed: Event in outbox, subscribe and grouping page after bulk edit.
  • Updated: http to https link in gateway.sa gateway.
  • Updated: Language file and whatsoever cord in the plugin.
  • Renamed wp_after_sms_gateway action to wp_sms_after_gateway.
  • Renamed wps_add_subscriber action to wp_sms_add_subscriber.
  • Renamed wps_delete_subscriber activity to wp_sms_delete_subscriber.
  • Renamed wps_update_subscriber action to wp_sms_update_subscriber.
  • Renamed wps_add_group activeness to wp_sms_add_group.
  • Renamed wps_delete_group action to wp_sms_delete_group.
  • Renamed wps_update_group activity to wp_sms_update_group.
  • Removed: select access option in settig page.
  • Removed: Hook method from WP_SMS grade and used do_action for gateways class.
  • Removed: gateway message in wp-admin.
  • Removed: Proposition sms from plugin (Because of the inefficiency).

3.1.3

  • Uniform with wordpress 4.5
  • Gateway smsline.ir Added.

3.1.2

  • Gateway gateway.sa Added.
  • Gateway modiranweb.internet Added.
  • Fixed: empty value in cf7 choice.
  • Fixed: Subscribe url and credit url in dashboard glance.

3.1.1

  • Linguistic communication High german updated. (Cheers Robert Skiba Medientechnik)
  • Fixed: activation lawmaking for SMS newsletter.
  • Fixed: Showing SMS tab in CF7 Meta box.
  • Gateway esms24.ir Added.
  • Gateway payamakaria.ir Added.
  • Gateway tgfsms.ir Added.
  • Gateway `pichakhost.com Added.
  • Gateway `tsms.ir Added.
  • Gateway `parsasms.com Added.

3.ane.0

  • Gateway Bestit.co Added.
  • Gateway Pegah-Payamak.ir Added.
  • Gateway Loginpanel.ir Added.
  • Gateway Adspanel.ir Added.
  • Gateway Adspanel.ir Added.
  • Gateway Mydnspanel.com Added.
  • Fixed: Update option on notification folio.
  • Language Standard arabic updated. (Thanks Hammad)

3.0.2

  • Gateway LabsMobile updated.
  • Gateway Mtarget updated.
  • Gateway Razpayamak Added.
  • Added: select condition in edit subscribe page.
  • Stock-still: transport to subscribes in Send SMS page.
  • Fixed: send notification new postal service to subscribers.
  • Fixed: custom text for notifications new post.

3.0.one

  • Fixed: bear witness group page and subscribe page on admin.
  • Language: Swedish added. (Thanks Kramfors)

three.0

  • Added: WP_SMS_Subscriptions form for processing subscribers (just in admin).
  • Added: Default_Gateway class for use it if webservice not agile in the plugin.
  • Added: cheque sms credit in SendSMS method.
  • Added: subscribers claw to plugin hooks collactions.
  • Added: user to newsletter when the user register in the wordpress.
  • Added: send message to form field on Contact Course vii.
  • Added: manage subscribe group in the plugin menu.
  • Added: access level for view send folio sms.
  • Added: testify/hide grouping in subscribe course.
  • Added: resend sms on outbox message.
  • Added: custom message for sms post proposition.
  • Added: css file for sms post suggestion course.
  • Added: select group in sms meta box for sending the sms to subscribers when publish new post.
  • Added: note for gateways after web services list.
  • Added: smsapi.pl polish gateway.
  • Added: wifisms.ir iranian gateway.
  • Improvement: list tabular array in for subscriber and outbox page (apply WP_List_Table library).
  • Comeback: notifications page.
  • Fixed: notification new comment conflict with woocommerce.
  • Compatible with wordpress 4.3.
  • Linguistic communication: updated.
  • Reseted all notifications option.
  • Remove add together-ons page.
  • Remove wordpress arrow from plugin.
  • Remove admin stylesheet one-time version.

2.8.1

  • Added: Sarinapayamak.com webservice
  • Added: mtarget.fr webservice
  • Added: bearsms.com webservice
  • Added: smss.co.il webservice
  • Added: sms77.de webservice
  • Added: isms.ir webservice
  • Fixed: Notification sms after enable plugin
  • Fixed: Integration with new ver of CF7
  • Update Arabic translation.
  • Added: High german translation. Thanks Robert Skiba

two.8

  • Added: rules on mobile field number for subscribe class. (maximum and minimum number)
  • Added: place holder on mobile filed number for subscribe grade for assistance to user.
  • Added: Chinese translator. (Thanks Jack Chen)
  • Added: Addons page in plugin.
  • Added: payamgah.net webservice.
  • Added: sabasms.biz webservice.
  • Added: chapargah.ir webservice.
  • Added: farapayamak.com webservice.
  • Added: yashil-sms.ir webservice.
  • Improved subscribe ajax form.
  • Improved subscribe form and changed the grade blueprint.
  • Stock-still: a problem in send post to subscribers.

two.7.4

  • Stock-still: Contact form 7 shortcode. currently supported.

two.7.3

  • Added: smshosting.information technology webservice.
  • Added: afilnet.com webservice.
  • Added: faraed.com webservice.
  • Added: spadsms.ir webservice.
  • Added: niazpardaz.com (New webservice).
  • Added: bandarsms.ir webservice.

2.7.2

  • Added: MarkazPayamak.ir webservice.
  • Added: payamak-panel.com webservice.
  • Added: barmanpayamak.ir webservice.
  • Added: farazpayam.com webservice.
  • Added: 0098sms.com webservice.
  • Added: amansoft.ir webservice.
  • Change webservice in asanak.ir webservice.

two.7.1

  • Added: Variables %condition% and %order_name% for woocommerce new club.
  • Added: smsservice.ir webservice.
  • Added: asanak.ir webservice.
  • Updated: idehpayam Webservice.
  • Added: Mobile field number in create a new user from admin.
  • Fixed notification sms when create a new user.
  • Stock-still: return credit in smsglobal webservice.

2.vii

  • Added: Numbers of WordPress Users to send sms page.
  • Added: Mobile validate number to grade plugin.
  • Added: Selection for Disable/Enable credit account in admin menu.
  • Added: afe.ir webservice.
  • Added: smshooshmand.com webservice.
  • Added: Description field optino for subscribe grade widget.
  • Included username & password field for reset push in webservice tab.
  • Updated: Widget code now adhears to WordPress standards.

2.6.seven

  • Added: navid-soft spider web service.
  • Remove number_format in evidence credit sms.

2.six.6

  • Fixed: problem in include files.

ii.six.5

  • Added: smsroo.ir web service.
  • Added: smsban.ir web service.

2.6.4

  • Fixed: nusoap_client outcome when include this grade with other plugins.
  • Remove mobile country code from tell friend section.
  • Modify folder and files construction plugin.

2.6.iii

  • Added: SMS.ir (new version) web service.
  • Added: Smsmelli.com (new version) web service.
  • Stock-still: sms items in posted sms page.
  • Stock-still: subscribe items in subscribe page.
  • Fixed: Mobile validation number.
  • Stock-still: Warning error when export subscribers.
  • Inverse rial unit to credit.

2.6.2

  • Fixed: Notifications sms to subscribes.
  • Added: Rayanbit.internet spider web service.
  • Added: Danish language.

2.vi.1

  • Fixed: Mobile validation in subscribe grade.
  • Added: Reset button for remove web service data.
  • Added: Melipayaamak web service.
  • Added: Postgah web service.
  • Added: Smsfa spider web service.
  • Added: Turkish language.

2.6

  • Stock-still: database error for exists table.
  • Fixed: pocket-size bugs.
  • Added: chosen javascript library to plugin.
  • Added: ssmss.ir Webservice.
  • Added: isun.company Webservice.
  • Added: idehpayam.com Webservice.
  • Added: smsarak.ir Webservice.
  • Added: difaan Webservice.
  • Added: Novinpayamak Webservice.
  • Added: Dot4all Webservice.

ii.5.4

  • Added: sms-gateway.at Webservice.
  • Added: Spanish language.
  • Updated: for WordPress 4.0 release.

2.5.iii

  • Added: Smstoos Webservice.
  • Added: Smsmaster Webservice.
  • Fixed: Showing sms credit in adminbar. Not be displayed for the users.
  • Fixed: Send sms for subscriber when publish new posts.

ii.5.2

  • Added: Avalpayam Webservice.
  • Fixed: bugs in database queries.

2.5.1

  • Added: Choice to add together mobile field in register form.
  • Added: Welcome bulletin for new user.
  • Added: Matin SMS Webservice.
  • Added: Iranspk Webservice.
  • Added: Freepayamak Webservice.
  • Added: IT Payamak Webservice.
  • Added: Irsmsland Webservice.
  • Fixed: Mistake Call to a member function GetCredit() in webservie page.
  • Fixed: Bug in notification register new user.
  • Updated: Arabic language.

2.v

  • Stock-still: Fault Phone call to undefined method stdClass::SendSMS() when enable/update plugin.
  • Added: Option to enable mobile field to profile page. (Setting -> Features)
  • Added: Import & export in subscribe list folio.
  • Added: Groups link in subscribe page.
  • Added: Search items in subscribe listing page.
  • Added: Novin sms Webservice.
  • Added: Hamyaar sms Webservice.

2.four.two

  • Added: SMSde Webservice.

2.4.1

  • Added: Payamakalmas Webservice.
  • Added: SMS (IPE) Webservice.
  • Added: Popaksms Webservice.

2.four

  • Added: WP_SMS Form and placing a parent class.
  • Added: wp_sms_send Action when Ship sms from the plugin.
  • Added: wp_sms_subscribe Action when register a new subscriber.
  • Added: Notification SMS when registering a new subscribe.
  • Added: Ponisha SMS Webservice.
  • Added: SMS Credit and full subscriber in At a Glance.
  • Fixed: Saved sms sender with InsertToDB method.
  • Optimized: Subscribe SMS ajax course.

2.three.5

  • Updated: ippanel.com Webservice.
  • Added: Sarab SMS Webservice.

2.3.4

  • Updated: Opilio Webservice.
  • Added: Sharif Pardazan (2345.ir) Webservice.

2.3.three

  • Added: Asia Payamak Webservice.

two.3.2

  • Added: Arad SMS Webservice.

2.3.1

  • Added: Notification SMS when get new order from Woocommerce plugin.
  • Added: Notification SMS when get new club from Easy Digital Downloads plugin.

2.iii

  • Added: Tabs pick in setting page.
  • Added: Notification SMS when registering a new username.
  • Added: Notification SMS when get new comment.
  • Added: Notification SMS when username login.
  • Added: Text format to published new post notification.
  • Added: MP Console Webservice.
  • Added: Mediana Webservice.

2.2.5

  • Inverse: Aadat 24 spider web service.
  • Changed: Parand Host web service URL.

2.2.4

  • Added: Adpdigital Webservice.
  • Added: Joghataysms Webservice.
  • Fixed: Iransmspanel webservice.
  • Inverse: Parand Host spider web service URL.
  • Inverse: Hi SMS web service URL.
  • Inverse: Nasrpayam web service URL.

2.2.ii

  • Added: Howdy SMS Webservice.

2.2.1

  • Added: Niazpardaz Webservice.
  • Fixed: Oplio Webservice.

2.2

  • Added: Payameroz Webservice.
  • Added: Unisender Webservice.
  • Stock-still: pocket-sized bug in cf7.

ii.1

  • Resolved: include tell-a-freind.php file.

2.0

  • Added: Metabox sms to Contact Form 7 plugin.
  • Added: SMS Bulletin sender page.
  • Added: PayamResan Webservice.
  • Optimized: include files.
  • Resolved: create tables when install plugin.
  • Language: updated.

2.0.2

  • Resolved: loading image.
  • Added: Fayasms Webservice.

2.0.ane

  • Added: SMS Bartar Webservice.

2.0

  • Added: Pagination in Subscribes Newsletter page.
  • Added: Group for Subscribes.
  • Optimized: jQuery Calling.
  • Resolved: Subscribe widget form.
  • Resolved: Small problems.

1.ix.22

  • Added: Nasrpayam Webservice.

1.ix.21

  • Added: Caffeweb Webservice.

ane.9.xx

  • Resolved: add subscriber in from WordPress Admin->Newsletter subscriber.
  • Added: TCIsms Webservice.

ane.9.19

  • Added: ImenCms Webservice.

ane.9.xviii

  • Added: Textsms Webservice.

ane.9.17

  • Added: Smsmart Webservice.

i.9.16

  • Added: PayamakNet Webservice.

1.ix.15

  • Added: BarzinSMS Webservice.
  • Update: jQuery to 1.nine.one.

i.nine.14

  • Resolved: opilo Webservice.

1.9.13

  • Resolved: paaz Webservice.

1.9.12

  • Added: JahanPayamak Webservice.

ane.9.eleven

  • Added: SMS-S Webservice.
  • Added: SMSGlobal Webservice.
  • Added: paaz Webservice.
  • Added: CSS file in setting folio.
  • Resolved: Loads the plugin's translated strings problem.
  • Linguistic communication: updated.

1.9.x

  • Added: Tablighsmsi Webservice.

1.9.9

  • Added: Smscall Webservice.

ane.9.8

  • Added: Smsdehi Webservice.

ane.9.seven

  • Added: Sadat24 Webservice.

ane.9.6

  • Added: Standard arabic language.
  • Added: Notification SMS when letters received from Contact Form 7 plugin.
  • Small changes in editing Subscribers.

ane.9.v

  • Added: Ariaideh Web Service.

one.ix.4

  • Added: Persian SMS Web Service.

1.9.3

  • Added: SMS Click Web Service.

1.nine.2

  • Added: ParandHost Web Service.
  • Troubleshooting jQuery in Send SMS page.

1.9.ane

  • Added: PayameAvval Web Service.

1.9

  • Added: SMSFa Web Service.
  • Optimize in translation functions.
  • Added: edit subscribers.

1.viii

  • Added: your mobile number.
  • Added: Enable/Disable calling jQuery in wordpress.
  • Added: Notification of a new wordPress version by SMS.

1.7.1

  • Fix a problem in jquery.

1.7

  • Fix a problem in Get credit method.
  • Fix a problem in ALTER TABLE.
  • Set a problem Active/Deactive all subscribe.

one.vi

  • Added: Enable/Disable username in subscribe folio.
  • Fix a problem in show credit.
  • Gear up a problem in menu link.
  • Gear up a problem in word counter.

1.five

  • Added: Hostiran Web Service.
  • Added: Iran SMS Panel Spider web Service.
  • Remove Orangesms Service.
  • Added: Activation subscribe.
  • Optimize plugin.
  • Update jquery to 1.vii.two

one.4

  • Added: Portuguese language.
  • Update last credit when transport sms page.

i.3.3

  • Gear up a trouble.
  • Set up a display the right number in the list of newsletter subscribers.

1.3.ii

  • Fix a problem.

one.3.1

  • Fix a trouble.
  • Fix credit unit in multi language.

one.3

  • Added: annals link for webservice.
  • Added: Suggestion post by SMS.

ane.2

  • Fix a problem.

1.1

  • Calculation evidence SMS credit in the dashboard right now.
  • Calculation bear witness full subscribers in the dashboard correct at present.
  • Adding Shortcode.
  • Added: Panizsms Spider web Service.
  • Added: Orangesms Web Service.

1.0

  • First plugin