function simple_package_tracking_uc_message in Simple Package Tracking 7
Same name and namespace in other branches
- 6 simple_package_tracking.module \simple_package_tracking_uc_message()
Implements hook_uc_message().
File
- ./
simple_package_tracking.module, line 1267
Code
function simple_package_tracking_uc_message() {
$messages['simple_package_tracking_tracking_notification_subject'] = t('Shipment for order [order-id] at [store-name]');
$messages['simple_package_tracking_tracking_notification_message'] = t("Hello,\n\nWe just wanted to let you know that a shipment is on it's way for order [order-link] via [tracking-carrier]. For your convenience, here is the tracking number [tracking-number-link]. You can use this to track your shipment on the [tracking-carrier] website.\n\nAs always, if you have any questions, please give us a call at [store-phone] if you have any questions. Thanks!\n\n-- The [store-name] team");
return $messages;
}