Admin - Configuration - E-Mail Options - Store Owner Email Address - Catalog
From Zen Cart(tm) Wiki
Menu: Admin - Configuration - E-Mail Options - Store Owner Email Address - Catalog
/path/to/your/shop/includes/classes/order.php
| Line #934 : $email_order .= "\n-----\n" . sprintf(EMAIL_DISCLAIMER, STORE_OWNER_EMAIL_ADDRESS) . "\n\n"; |
/path/to/your/shop/includes/functions/functions_email.php
| Line #312 : if ($block['EMAIL_DISCLAIMER']=='') $block['EMAIL_DISCLAIMER'] = sprintf(EMAIL_DISCLAIMER, '<a href="mailto:' . STORE_OWNER_EMAIL_ADDRESS . '">'. STORE_OWNER_EMAIL_ADDRESS .' </a>'); |
/path/to/your/shop/includes/languages/english/create_account.php
| Line #36 : define('EMAIL_CONTACT', 'For help with any of our online services, please email the store-owner: <a href="mailto:' . STORE_OWNER_EMAIL_ADDRESS . '">'. STORE_OWNER_EMAIL_ADDRESS ." </a>\n\n"); |
/path/to/your/shop/includes/languages/english/email_extras.php
| Line #31 : 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"); |
/path/to/your/shop/includes/languages/english/gv_faq.php
| Line #86 : by email at '. STORE_OWNER_EMAIL_ADDRESS . '. Please make sure you give |
/path/to/your/shop/includes/modules/create_account.php
| Line #431 : $email_text .= "\n\n" . sprintf(EMAIL_DISCLAIMER_NEW_CUSTOMER, STORE_OWNER_EMAIL_ADDRESS). "\n\n";
Line #432 : $html_msg['EMAIL_DISCLAIMER'] = sprintf(EMAIL_DISCLAIMER_NEW_CUSTOMER, '<a href="mailto:' . STORE_OWNER_EMAIL_ADDRESS . '">'. STORE_OWNER_EMAIL_ADDRESS .' </a>'); |
/path/to/your/shop/includes/modules/payment/cc.php
| Line #321 : $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Split Credit Card Email Address', 'MODULE_PAYMENT_CC_EMAIL', '" . STORE_OWNER_EMAIL_ADDRESS . "', 'If an email address is entered, the middle digits of the credit card number will be sent to the email address (the outside digits are stored in the database with the middle digits censored)', '6', '131', now())"); |
/path/to/your/shop/includes/modules/payment/paypal.php
| Line #304 : $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Business ID', 'MODULE_PAYMENT_PAYPAL_BUSINESS_ID','".STORE_OWNER_EMAIL_ADDRESS."', 'Primary email address for your PayPal account.<br />NOTE: This must match <strong>EXACTLY </strong>the primary email address on your paypal account settings. It <strong>IS case-sensitive</strong>, so please check your paypal preferences at paypal.com and be sure to enter the EXACT same primary email address here.', '6', '2', now())");
Line #322 : $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Debug Email Address', 'MODULE_PAYMENT_PAYPAL_DEBUG_EMAIL_ADDRESS','".STORE_OWNER_EMAIL_ADDRESS."', 'The email address to use for paypal debugging', '6', '72', now())"); |
