관리-도구
편집 파일: email_extras.php
<?php /** * @copyright Copyright 2003-2020 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: DrByte 2020 Jun 19 Modified in v1.5.7 $ */ define ('EMAIL_LOGO_FILENAME', 'header.jpg'); //-File is present in /email folder define ('EMAIL_LOGO_WIDTH', '550'); define ('EMAIL_LOGO_HEIGHT', '110'); define ('EMAIL_LOGO_ALT_TITLE_TEXT', 'Zen Cart! The Art of E-commerce'); // ----- // If you want to include some extra information in each email's header information (like perhaps the store address and/or phone number), // set this value to contain the full HTML content to be copied, e.g. '<div id="extra-stuff">Extra stuff for header</div>'. // define ('EMAIL_EXTRA_HEADER_INFO', ''); // office use only define('OFFICE_FROM','<strong>From:</strong>'); define('OFFICE_EMAIL','<strong>Mail:</strong>'); define('OFFICE_USE','<strong>Office Use Only:</strong>'); define('OFFICE_LOGIN_NAME','<strong>Login Name:</strong>'); define('OFFICE_LOGIN_EMAIL','<strong>Login Email:</strong>'); define('OFFICE_LOGIN_PHONE','<strong>Telephone:</strong>'); define('OFFICE_LOGIN_FAX','<strong>Fax:</strong>'); define('OFFICE_IP_ADDRESS','<strong>IP Address:</strong>'); define('OFFICE_HOST_ADDRESS','<strong>Host Address:</strong>'); define('OFFICE_DATE_TIME','<strong>Date and Time:</strong>'); if (!defined('OFFICE_IP_TO_HOST_ADDRESS')) define('OFFICE_IP_TO_HOST_ADDRESS', 'OFF'); define('EMAIL_TEXT_TELEPHONE', 'Telephone: '); // email disclaimer define('EMAIL_DISCLAIMER', 'This email address was given to us by you or by one of our customers. If you feel that you have received this email in error, please send an email to %s '); define('EMAIL_SPAM_DISCLAIMER',''); // Define a message you'd like to add to an order confirmation email define('EMAIL_ORDER_MESSAGE',''); define('EMAIL_FOOTER_COPYRIGHT','Copyright (c) ' . date('Y') . ' <a href="' . zen_href_link(FILENAME_DEFAULT) . '">' . STORE_NAME . '</a>. Powered by <a href="https://www.zen-cart.com">Zen Cart</a>'); define('TEXT_UNSUBSCRIBE', "\n\nTo unsubscribe from future newsletter and promotional mailings, simply click on the following link: \n"); // email advisory for all emails customer generate - tell-a-friend and GV send define('EMAIL_ADVISORY', '-----' . "\n" . '<strong>IMPORTANT:</strong> For your protection and to prevent malicious use, all emails sent via this web site are logged and the contents recorded and available to the store owner. If you feel that you have received this email in error, please send an email to ' . STORE_OWNER_EMAIL_ADDRESS . "\n\n"); // email advisory included warning for all emails customer generate - tell-a-friend and GV send define('EMAIL_ADVISORY_INCLUDED_WARNING', '<strong>This message is included with all emails sent from this site:</strong>'); // Admin additional email subjects define('SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO_SUBJECT','[CREATE ACCOUNT]'); define('SEND_EXTRA_GV_CUSTOMER_EMAILS_TO_SUBJECT','[GV CUSTOMER SENT]'); define('SEND_EXTRA_NEW_ORDERS_EMAILS_TO_SUBJECT','[NEW ORDER]'); // Low Stock Emails define('EMAIL_TEXT_SUBJECT_LOWSTOCK','Warning: Low Stock'); define('SEND_EXTRA_LOW_STOCK_EMAIL_TITLE','Low Stock Report: ');