/oscommerce2-mypgsql/catalog/admin/includes/modules/newsletters/newsletter.php
https://github.com/shooray/oscommerce2-mypgsql · PHP · 81 lines · 58 code · 12 blank · 11 comment · 4 complexity · 8c4698e821d960401abbf459b9930927 MD5 · raw file
- <?php
- /*
- $Id$
- osCommerce, Open Source E-Commerce Solutions
- http://www.oscommerce.com
- Copyright (c) 2002 osCommerce
- Released under the GNU General Public License
- */
- class newsletter {
- var $show_choose_audience, $title, $content;
- function newsletter($title, $content) {
- $this->show_choose_audience = false;
- $this->title = $title;
- $this->content = $content;
- }
- function choose_audience() {
- return false;
- }
- function confirm() {
- global $HTTP_GET_VARS;
- $mail_query = tep_db_query("select count(*) as count from " . TABLE_CUSTOMERS . " where customers_newsletter = '1'");
- $mail = tep_db_fetch_array($mail_query);
- $confirm_string = '<table border="0" cellspacing="0" cellpadding="2">' . "\n" .
- ' <tr>' . "\n" .
- ' <td class="main"><font color="#ff0000"><strong>' . sprintf(TEXT_COUNT_CUSTOMERS, $mail['count']) . '</strong></font></td>' . "\n" .
- ' </tr>' . "\n" .
- ' <tr>' . "\n" .
- ' <td>' . tep_draw_separator('pixel_trans.gif', '1', '10') . '</td>' . "\n" .
- ' </tr>' . "\n" .
- ' <tr>' . "\n" .
- ' <td class="main"><strong>' . $this->title . '</strong></td>' . "\n" .
- ' </tr>' . "\n" .
- ' <tr>' . "\n" .
- ' <td>' . tep_draw_separator('pixel_trans.gif', '1', '10') . '</td>' . "\n" .
- ' </tr>' . "\n" .
- ' <tr>' . "\n" .
- ' <td class="main"><tt>' . nl2br($this->content) . '</tt></td>' . "\n" .
- ' </tr>' . "\n" .
- ' <tr>' . "\n" .
- ' <td>' . tep_draw_separator('pixel_trans.gif', '1', '10') . '</td>' . "\n" .
- ' </tr>' . "\n" .
- ' <tr>' . "\n" .
- ' <td class="smallText" align="right">' . tep_draw_button(IMAGE_SEND, 'mail-closed', tep_href_link(FILENAME_NEWSLETTERS, 'page=' . $HTTP_GET_VARS['page'] . '&nID=' . $HTTP_GET_VARS['nID'] . '&action=confirm_send'), 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_NEWSLETTERS, 'page=' . $HTTP_GET_VARS['page'] . '&nID=' . $HTTP_GET_VARS['nID'])) . '</td>' . "\n" .
- ' </tr>' . "\n" .
- '</table>';
- return $confirm_string;
- }
- function send($newsletter_id) {
- $mail_query = tep_db_query("select customers_firstname, customers_lastname, customers_email_address from " . TABLE_CUSTOMERS . " where customers_newsletter = '1'");
- $mimemessage = new email(array('X-Mailer: osCommerce'));
- // Build the text version
- $text = strip_tags($this->content);
- if (EMAIL_USE_HTML == 'true') {
- $mimemessage->add_html($this->content, $text);
- } else {
- $mimemessage->add_text($text);
- }
- $mimemessage->build_message();
- while ($mail = tep_db_fetch_array($mail_query)) {
- $mimemessage->send($mail['customers_firstname'] . ' ' . $mail['customers_lastname'], $mail['customers_email_address'], '', EMAIL_FROM, $this->title);
- }
- $newsletter_id = tep_db_prepare_input($newsletter_id);
- tep_db_query("update " . TABLE_NEWSLETTERS . " set date_sent = now(), status = '1' where newsletters_id = '" . tep_db_input($newsletter_id) . "'");
- }
- }
- ?>