function uc_notify_uc_message in Ubercart 5
Implementation of hook_uc_message().
File
- uc_notify/
uc_notify.module, line 109 - Handles configuration and execution of email notifications.
Code
function uc_notify_uc_message() {
$messages['order_update_email'] = t("[order-first-name] [order-last-name],\n\nYour order number [order-link] at [store-name] has been updated.\n\nOrder status: [order-status]\n\nOrder comment:\n[order-last-comment]\n\nBrowse to the following page to login to your account and view your order details:\n[site-login]\n\n\nThanks again,\n\n[store-name]\n[site-slogan]");
return $messages;
}