Type
magento2-module
Sends transactional SMS notifications through the LINK Mobility messaging service
magento2-module
OSL-3.0
None
None
None
None
None
Wagento SMS Notifications integrates Magento 2 with the LINK Mobility mobile messaging service to send transactional text notifications. Customers can be notified when their order is successfully placed as well as when it is invoiced, shipped, canceled, refunded, held or released.
Detailed instructions for installation, configuration and usage can be found in the User Guide.
We highly recommend purchasing the extension from the Magento Marketplace, where you can receive the latest version for free. Once purchased, you can use the following commands to install it from a terminal or command prompt:
$ cd /path/to/your/site
$ composer require wagento/module-sms-notifications
This extension can be downloaded from GitHub and installed into the
app/code
directory of your Magento installation with these commands:
$ cd /path/to/your/site/app/code
$ mkdir Wagento
$ cd Wagento
$ git clone [email protected]:wagento/sms-notifications.git SMSNotifications
After installing the extension for the first time, please run these commands to enable it:
$ cd /path/to/your/site
$ php bin/magento module:enable Wagento_SMSNotifications
Once you have enabled the extension, please follow the instructions in the Post-Install, Post-Update or Post-Uninstall section to complete the installation process.
If you've installed the extension from the Magento Marketplace using Composer, run these commands from your terminal or command prompt to update it:
$ cd /path/to/your/site
$ composer update wagento/module-sms-notifications
If you've installed the extension from GitHub manually, run these commands from your terminal or command prompt to update it:
$ cd /path/to/your/site/app/code/Wagento/SMSNotifications
$ git pull
If you've installed the extension from the Magento Marketplace using Composer, run these commands from your terminal or command prompt to remove its data and package:
$ cd /path/to/your/site
$ php bin/magento module:uninstall -r Wagento_SMSNotifications
If you've installed the extension manually, run these commands from your terminal or command prompt to remove its data:
$ cd /path/to/your/site/app/code
$ rm -rf Wagento/SMSNotifications
$ mysql -u your_user -p your_database <<'SQL'
DROP TABLE `directory_telephone_prefix`;
DROP TABLE `sms_subscription`;
DELETE FROM `eav_attribute` WHERE `attribute_code` LIKE 'sms_mobile%';
DELETE FROM `core_config_data` WHERE `path` LIKE 'sms_notifications/%';
SQL
To complete the installation, update or uninstall process, please run these commands:
$ cd /path/to/your/site
$ php bin/magento setup:upgrade
$ php bin/magento setup:di:compile
$ php bin/magento setup:static-content:deploy
The settings can configured in the Admin panel at
Stores > Settings > Configuration > General > SMS Notifications
. For detailed
descriptions of the available options, please refer to the User Guide.
If you experience any issues or errors while using the extension, please open a ticket by sending an e-mail to [email protected]. Be sure to include your domain, PHP version, Magento version, a detailed description of the problem including steps to reproduce it and any other relevant information. We do our best to respond to all legitimate inquires within 48 business hours.
The source code contained in this extension is licensed under version 3.0 of the Open Software License (OSL-3.0). A full copy of the license can be found in the LICENSE.txt file.
A full history of the extension can be found in the CHANGELOG.md file.
We welcome any and all feedback, suggestions and improvements submitted via issues and pull requests on GitHub. For guidelines, please see the CONTRIBUTING.md document.
This extension was developed by Joseph Leedy and Yair García Torres of Wagento in co-operation with LINK Mobility.