-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Update Intelcom Shipper (#1024)
* Update Intelcom Shipper Intelcom changed its name to Dragonfly and updated email notifications. * Update const.py
- Loading branch information
Showing
1 changed file
with
22 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -575,23 +575,41 @@ | |
"purolator_tracking": {"pattern": ["\\d{12,15}"]}, | ||
# Intelcom | ||
"intelcom_delivered": { | ||
"email": ["[email protected]"], | ||
"email": [ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
], | ||
"subject": [ | ||
"Your order has been delivered!", | ||
"Your package has been delivered", | ||
"Hooray! Your package is here", | ||
"Votre commande a été livrée!", | ||
"Votre colis a été livré!", | ||
], | ||
}, | ||
"intelcom_delivering": { | ||
"email": ["[email protected]"], | ||
"email": [ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
], | ||
"subject": [ | ||
"Your package is on the way!", | ||
"Your package is on its way", | ||
"Votre colis est en chemin!", | ||
], | ||
}, | ||
"intelcom_packages": { | ||
"email": ["[email protected]"], | ||
"subject": ["Your package has been received!"], | ||
"email": [ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
], | ||
"subject": [ | ||
"Your package has been received!", | ||
"We've received your package", | ||
], | ||
}, | ||
"intelcom_tracking": {"pattern": ["INTLCMD[0-9]{9}"]}, | ||
# Walmart | ||
|