Results 1 to 6 of 6
  1. #1
    Join Date
    Feb 2007
    Posts
    14
    Plugin Contributions
    0

    Default Order Update Emails - Subject look up

    Hi,

    I've read every post going about changing the Order Status email subject lines but nothing seems to be working.

    I need the email subject line to just read 'Order Update' and have no order number following this. How do I remove this?

    Thanks in advance for any help on this.

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Order Update Emails - Subject look up

    Doing a search in the Tools ... Developer's Tool Kit ... for the words:
    Order Update

    Would locate the use of this in:
    /admin/includes/languages/english/orders.php

    Line #75 : define('EMAIL_TEXT_SUBJECT', 'Order Update');
    A further search on:
    EMAIL_TEXT_SUBJECT

    Would show that this is used in:
    /admin/orders.php

    Line #124 : zen_mail($check_status->fields['customers_name'], $check_status->fields['customers_email_address'], EMAIL_TEXT_SUBJECT . ' #' . $oID, $message, STORE_NAME, EMAIL_FROM, $html_msg, 'order_status');

    Line #129 : 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');
    Note: there is no override for the file ... so keep a backup of the original and your changed file for future updates ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #3
    Join Date
    Feb 2007
    Posts
    14
    Plugin Contributions
    0

    Default Re: Order Update Emails - Subject look up

    Hi Linda,

    Thanks for your help with this. How do I just remove the order number section of the subject line. Everytime I try to remove the '#' . $oID the emails stop working and no updates are being sent to customers.

    Thanks again for your help

  4. #4
    Join Date
    Jul 2006
    Location
    Toronto, ON
    Posts
    87
    Plugin Contributions
    0

    Default Re: Order Update Emails - Subject look up

    Was a solution found to this problem? I'm also interested in removing the order number.

  5. #5
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Order Update Emails - Subject look up

    To remove it from this line:
    PHP Code:
    zen_mail($check_status->fields['customers_name'], $check_status->fields['customers_email_address'], EMAIL_TEXT_SUBJECT ' #' $oID$messageSTORE_NAMEEMAIL_FROM$html_msg'order_status'); 
    Remove this code ...
    . ' #' . $oID
    PHP Code:
    zen_mail($check_status->fields['customers_name'], $check_status->fields['customers_email_address'], EMAIL_TEXT_SUBJECT$messageSTORE_NAMEEMAIL_FROM$html_msg'order_status'); 
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  6. #6
    Join Date
    Aug 2006
    Posts
    126
    Plugin Contributions
    0

    Default Re: Order Update Emails - Subject look up

    Hi,

    How about replacing the order number with the order status?

    Thanks

 

 

Similar Threads

  1. v153 Additional Order Confirmation & Order Update emails
    By dchquilling in forum General Questions
    Replies: 2
    Last Post: 13 Oct 2014, 05:04 PM
  2. v138a Append "Order Status" to the end of the Order Update Email Subject Line
    By kamokid in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 5 Jun 2013, 10:18 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
  5. Where to change subject on Order update emails.
    By Balboa in forum General Questions
    Replies: 1
    Last Post: 14 Feb 2007, 12:34 AM

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