Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13
  1. #11
    Join Date
    Jul 2012
    Posts
    16,718
    Plugin Contributions
    17

    Default Re: Change Email Subject of Status Update Messages To Show Assigned Status

    Sorry, thought there was still a need to address the admin email and that it was the batch status update that was "missing"... But yes, for the customer, that would be the line to which to append the same text...

    Take note that the email title from batch status is different than what you had for the admin/orders.php version. That version placed the order # between square brackets, the above does not.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  2. #12
    Join Date
    Aug 2012
    Posts
    331
    Plugin Contributions
    0

    Default Re: Change Email Subject of Status Update Messages To Show Assigned Status

    Thanks so much,

    How would i add [] around $orders_status_array[$status] so that it shows [Update] in the email subject

  3. #13
    Join Date
    Jul 2012
    Posts
    16,718
    Plugin Contributions
    17

    Default Re: Change Email Subject of Status Update Messages To Show Assigned Status

    Quote Originally Posted by ShopVille View Post
    Thanks so much,

    How would i add [] around $orders_status_array[$status] so that it shows [Update] in the email subject
    By encapsulating the applicable content with the addtional content as below:

    Quote Originally Posted by mc12345678 View Post
    In order to accommodate the change in status being in the subject line of the super orders batch status update, goto: admin/includes/functions/extra_functions/super_orders_functions.php
    find code similar to below within the function email_latest_status:
    Code:
     
    // End Zen Cart v1.5 Modified Core Code
    
     
      // send extra emails
    
     
      if (SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_STATUS == '1' and SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO != '') {
    
     
        zen_mail('', SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO, SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_SUBJECT . ' ' . EMAIL_TEXT_SUBJECT . ' #' . $oID, $message, STORE_NAME, EMAIL_FROM, $html_msg, 'order_status_extra');
    
     
      }
    and change to:
    Code:
     
    // End Zen Cart v1.5 Modified Core Code
    
     
      // send extra emails
    
     
      if (SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_STATUS == '1' and SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO != '') {
    
     
        zen_mail('', SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO, SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_SUBJECT . ' ' . EMAIL_TEXT_SUBJECT . ' #' . $oID . ' [' . 
    $orders_status_array[$status] . ']', $message, STORE_NAME, EMAIL_FROM, $html_msg, 'order_status_extra');
    
     
      }
    Code:
    zen_mail($customer_info->fields['customers_name'], $customer_info->fields['customers_email_address'], EMAIL_TEXT_SUBJECT . ' #' . $oID . ' [' . 
    $orders_status_array[$status] . ']', $message, STORE_NAME, EMAIL_FROM, $html_msg, 'order_status');
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. v150 Customize order status email subject line to include status name
    By ShopVille in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 19 Oct 2015, 09:24 PM
  2. Text email order status subject
    By Akasashasha in forum General Questions
    Replies: 1
    Last Post: 28 Dec 2010, 11:24 AM
  3. Change Email Subject of Status Update Messages e.g. Order Update XXXX
    By apemusic in forum Managing Customers and Orders
    Replies: 4
    Last Post: 13 Oct 2010, 08:42 AM
  4. Replies: 1
    Last Post: 27 Mar 2009, 02:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR