seven.io SMS for Magento 2
seven.io/magento2
Sends automated SMS notifications via the seven.io gateway on customer registration, order submission and shipment, with per-event templates, placeholder substitution and configurable internal or customer recipients.
Build Tests
Code Quality
Tested on Magento 2.4.9
Recent Test History
Each release is tested against the latest Magento version at that time.
Top Contributors
View LeaderboardLooking for Contributors
Composer installation fails. Your contribution could help the entire Magento community!
Share This Module's Status
README
Loaded from GitHubFeatures
- Event-based SMS dispatch - fired automatically on:
- Customer registration
- Order submission
- Order shipment
- Configurable templates per event - edit message body, toggle per event, target internal-only recipients
- Placeholder substitution - inject order number, customer name, tracking URL etc.
- Composer-first install - standard Magento 2 module, no marketplace required
Requirements
| Component | Version |
|---|---|
| Magento | 2.4.x |
| PHP | 8.1 / 8.2 / 8.3 / 8.4 |
| seven.io | Active account with API key (how to get one) |
Installation
Composer (recommended)
composer require seven.io/magento2
php bin/magento module:enable Seven_Api
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento cache:clean
Manual
-
Download the latest release ZIP.
-
Extract its contents into
app/code/Seven/Api/(create the directory if it does not exist). -
Enable and register the module:
php bin/magento module:enable Seven_Api php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento cache:clean
Configuration
In the Magento admin go to Stores → Configuration → seven (or Marketing → Communications → seven depending on the Magento version), paste your API key and click Save Config.
From there you can also:
- toggle individual triggers (customer registration / order submission / order shipment)
- edit the message template per event
- define additional or default recipients (comma-separated, e.g.
+4915112345678,Peter) - mark a trigger as internal (sends to the additional recipients only, not to the customer)
Template placeholders
| Event | Available placeholders |
|---|---|
| Customer registration | {0} first name · {1} last name · {2} email |
| Order submission | {0} order ID · {1} customer name |
| Order shipment | {0} order ID · {1} recipient name · {2} tracking info (number(carrier), semicolon-separated for multiple parcels) |
Placeholders are substituted with a simple str_replace - missing values resolve to an empty string.
Troubleshooting
Composer fails with requires php ^7.0|^7.1|^7.2
You are pulling an old release (v1.0.0). Make sure your composer.json does not pin to that version, then run composer update seven.io/magento2.
Config section "seven" does not appear in admin
Re-run setup:upgrade and cache:clean, then log out and back into the admin once so ACL gets refreshed.
SMS is not sent on event
Check var/log/system.log - the module logs every dispatch attempt as well as reasons for skipping (missing API key, event disabled, missing phone number).
Support
Need help? Contact us or open an issue.
License
This content is fetched directly from the module's GitHub repository. We are not the authors of this content and take no responsibility for its accuracy, completeness, or any consequences arising from its use.