32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------
|
|
$Id: email_orders.php,v 1.3 2007/06/13 16:38:21 r23 Exp $
|
|
|
|
MyOOS [Shopsystem]
|
|
https://www.oos-shop.de
|
|
|
|
|
|
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
|
----------------------------------------------------------------------
|
|
Based on:
|
|
|
|
File: orders.php,v 1.24 2003/02/09 13:15:22 thomasamoulton
|
|
----------------------------------------------------------------------
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
----------------------------------------------------------------------
|
|
Released under the GNU General Public License
|
|
---------------------------------------------------------------------- */
|
|
|
|
define('EMAIL_SEPARATOR', '------------------------------------------------------');
|
|
define('EMAIL_TEXT_SUBJECT', 'Order Update');
|
|
define('EMAIL_TEXT_ORDER_NUMBER', 'Order Number:');
|
|
define('EMAIL_TEXT_INVOICE_URL', 'Detailed Invoice:');
|
|
define('EMAIL_TEXT_DATE_ORDERED', 'Date Ordered:');
|
|
define('EMAIL_TEXT_STATUS_UPDATE', 'Your order has been updated to the following status.' . "\n\n" . 'New status: %s' . "\n\n" . 'Please reply to this email if you have any questions.' . "\n");
|
|
define('EMAIL_TEXT_COMMENTS_UPDATE', 'The comments for your order are' . "\n\n%s\n\n");
|
|
|
|
|