Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2006
    Location
    Northern VA, USA
    Posts
    15
    Plugin Contributions
    0

    Default Order Confirmation emails and payment-details info

    I am getting the order confirmation messages sent to me (as admin) to both email and mobile phone (1st 165 chars). Since putting linkpoint API active, now I am seeing just that bit (since it's been prepended to the text of the email body).

    How would I move the credit processing information of linkpoint to the bottom of that email message (all the way at the bottom if possible, below the office use segment)? It seems more appropriately placed there anyway to me - since it is really office use information, and it makes seeing who sent the order from my mobile possible.

    Thanks!

  2. #2
    Join Date
    Jan 2004
    Posts
    58,460
    Blog Entries
    3
    Plugin Contributions
    111

    Default Re: Order Confirmation emails and payment-details info

    That information was put at the top of the email as a quick-reference for the Administrator/order manager to be able to quickly confirm that the payment was valid.

    If you wish to move it to the very end of the email, edit this file:

    /includes/classes/order.php
    change this:
    Code:
            $email_order = $pmt_details . $email_order;
            $html_msg['EMAIL_TEXT_HEADER'] = nl2br($pmt_details) . $html_msg['EMAIL_TEXT_HEADER'];
    to this:
    Code:
            $email_order = $email_order . $pmt_details;
            $html_msg['EXTRA_INFO'] = $html_msg['EXTRA_INFO'] . nl2br($pmt_details);
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donations always welcome: www.zen-cart.com/donate

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    Apr 2006
    Location
    Northern VA, USA
    Posts
    15
    Plugin Contributions
    0

    Default Re: Order Confirmation emails and payment-details info

    Thanks! I've made the change -- come on orders! =]

 

 

Similar Threads

  1. Sending Multiple Order Confirmation Emails
    By squashrick in forum General Questions
    Replies: 1
    Last Post: 29 Mar 2007, 08:24 PM
  2. different confirmation emails per payment method
    By tokyogb in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Jan 2007, 03:26 AM
  3. Not getting order confirmation emails???
    By helenthemum in forum General Questions
    Replies: 1
    Last Post: 21 Nov 2006, 06:48 PM
  4. Email SMTP issues (needed 'smtpauth' instead of 'smtp')
    By petpromises in forum General Questions
    Replies: 23
    Last Post: 8 Nov 2006, 01:48 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
  •