codingdaniel / magento2-order-tracking-notification
Notifies customers when tracking information is added to their orders
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- php: >=7.4.0
- codingdaniel/magento2-core: *
- magento/magento-composer-installer: *
This package is auto-updated.
Last update: 2025-03-07 20:25:39 UTC
README
Simple Magento 2 module that triggers an order shipment notification to the customer when tracking information is added via the REST API.
A new boolean field notify
is added in the extension_attributes
parameter of the payload for the shipment/track endpoint.
Example:
{
"entity": {
"order_id": 1,
"parent_id": 1,
"weight": 0,
"qty": 0,
"description": "string",
"extension_attributes": {
"notify": true
},
"track_number": "string",
"title": "string",
"carrier_code": "string"
}
}
Requirements
- PHP 7.4
- Magento 2.4.2 or Magento 2.4.4
Installation
Installation can be done via composer by running composer require codingdaniel/magento2-order-tracking-notification