25 lines
734 B
PHP
25 lines
734 B
PHP
<?php
|
|
/*
|
|
$Id: mail.php,v 1.10 2003/07/06 20:33:01 dgw_ Exp $
|
|
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
|
|
Released under the GNU General Public License
|
|
*/
|
|
|
|
define('HEADING_TITLE', 'Enviar Email a Cliente(s)');
|
|
|
|
define('TEXT_CUSTOMER', 'Cliente:');
|
|
define('TEXT_SUBJECT', 'Asunto:');
|
|
define('TEXT_FROM', 'Desde:');
|
|
define('TEXT_MESSAGE', 'Mensaje:');
|
|
define('TEXT_SELECT_CUSTOMER', 'Seleccionar Cliente');
|
|
define('TEXT_ALL_CUSTOMERS', 'Todos los Clientes');
|
|
define('TEXT_NEWSLETTER_CUSTOMERS', 'Todos los Suscritos');
|
|
|
|
define('NOTICE_EMAIL_SENT_TO', 'Aviso: Email enviado a: %s');
|
|
define('ERROR_NO_CUSTOMER_SELECTED', 'Error: No ha seleccionado ningun cliente.');
|
|
?>
|