Results 1 to 8 of 8
  1. #1
    Join Date
    Sep 2010
    Location
    Finland
    Posts
    59
    Plugin Contributions
    0

    Default Manufacturers name to order email

    How do I add manufacturers name to order email.
    I have added before telephone number.
    Like this
    https://www.zen-cart.com/showthread....livery-address

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: Manufacturers name to order email

    admin > config > email options > Send Copy of Order Confirmation Emails To >
    Code:
    Send COPIES of order confirmation emails to the following email addresses, in this format: Name 1 <email@address1>, Name 2 <email@address2>
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Sep 2010
    Location
    Finland
    Posts
    59
    Plugin Contributions
    0

    Default Re: Manufacturers name to order email

    There are multiple manufacturers. I want to know which manufacturer's products sold.
    This module was help me to see manufacturers, admin panel costumer order list. mod_add_manufacturer_v1.5x
    But I want to see also manufacturers name to order e-mails. Because I'll do mail forwarding to them.

  4. #4
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: Manufacturers name to order email

    But I want to see also manufacturers name
    This would require a good bit of coding to the orders and the display of orders page in the admin
    Zen-Venom Get Bitten

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

    Default Re: Manufacturers name to order email

    Are you wanting the order emails to read something like this:

    TEXT emails ...
    1 x Microsoft IntelliMouse Explorer (MSIMEXP) (Microsoft) = $70.95
    Model USB
    1 x Die Hard With A Vengeance Linked (DVD-DHWV) (Fox) = $39.99
    1 x Fire Down Below Linked (DVD-FDBL) (Warner) = $29.99
    1 x Beloved Linked (DVD-BELOVED) (Warner) = $54.99
    1 x SWAT 3: Close Quarters Battle Linked (PC-SWAT3) (Sierra) = $79.99
    2 x Test Two 1oz (Test2) = $4.50
    HTML emails (with out the table that shows) ...
    1 x Microsoft IntelliMouse Explorer (MSIMEXP) (Microsoft)
    Model USB
    $70.95
    1 x Die Hard With A Vengeance Linked (DVD-DHWV) (Fox) $39.99
    1 x Fire Down Below Linked (DVD-FDBL) (Warner) $29.99
    1 x Beloved Linked (DVD-BELOVED) (Warner) $54.99
    1 x Unreal Tournament Linked (PC-UNTM) (GT Interactive)
    Version Download: Windows - English
    $89.99
    1 x SWAT 3: Close Quarters Battle Linked (PC-SWAT3) (Sierra) $79.99
    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: v1.5.5]
    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
    Sep 2010
    Location
    Finland
    Posts
    59
    Plugin Contributions
    0

    Default Re: Manufacturers name to order email

    Its looks nice. Is it possible to do?
    HTML emails: 1 x Microsoft IntelliMouse Explorer (MSIMEXP) (Microsoft) Model USB $70.95

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

    Default Re: Manufacturers name to order email

    You'd have to fool around with the orders.php a lot more than the code that I came up with to do that ...

    Compare this code to the existing code for:
    /includes/classes/orders.php

    Code:
          $this->notify('NOTIFY_ORDER_PROCESSING_ONE_TIME_CHARGES_BEGIN', $i);
    
          // build output for email notification
          $this->products_ordered .=  $this->products[$i]['qty'] . ' x ' . $this->products[$i]['name'] . ($this->products[$i]['model'] != '' ? ' (' . $this->products[$i]['model'] . ') ' : '') . (zen_get_products_manufacturers_name($this->products[$i]['id']) != '' ? ' (' . zen_get_products_manufacturers_name($this->products[$i]['id']) . ') ' : '') . ' = ' .
          $currencies->display_price($this->products[$i]['final_price'], $this->products[$i]['tax'], $this->products[$i]['qty']) .
          ($this->products[$i]['onetime_charges'] !=0 ? "\n" . TEXT_ONETIME_CHARGES_EMAIL . $currencies->display_price($this->products[$i]['onetime_charges'], $this->products[$i]['tax'], 1) : '') .
          $this->products_ordered_attributes . "\n";
          $this->products_ordered_html .=
          '<tr>' . "\n" .
          '<td class="product-details" align="right" valign="top" width="30">' . $this->products[$i]['qty'] . '&nbsp;x</td>' . "\n" .
          '<td class="product-details" valign="top">' . nl2br($this->products[$i]['name']) . ($this->products[$i]['model'] != '' ? ' (' . nl2br($this->products[$i]['model']) . ') ' : '') . (zen_get_products_manufacturers_name($this->products[$i]['id']) != '' ? ' (' . zen_get_products_manufacturers_name($this->products[$i]['id']) . ') ' : '') . "\n" .
          '<nobr>' .
          '<small><em> '. nl2br($this->products_ordered_attributes) .'</em></small>' .
          '</nobr>' .
          '</td>' . "\n" .
          '<td class="product-details-num" valign="top" align="right">' .
          $currencies->display_price($this->products[$i]['final_price'], $this->products[$i]['tax'], $this->products[$i]['qty']) .
          ($this->products[$i]['onetime_charges'] !=0 ?
          '</td></tr>' . "\n" . '<tr><td class="product-details">' . nl2br(TEXT_ONETIME_CHARGES_EMAIL) . '</td>' . "\n" .
          '<td>' . $currencies->display_price($this->products[$i]['onetime_charges'], $this->products[$i]['tax'], 1) : '') .
          '</td></tr>' . "\n";
        }
    
        $order_total_modules->apply_credit();//ICW ADDED FOR CREDIT CLASS SYSTEM
    I use Beyond Compare from scootersoftware.com for code comparisons and it makes update/changes a lot easier ...
    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: v1.5.5]
    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!

  8. #8
    Join Date
    Sep 2010
    Location
    Finland
    Posts
    59
    Plugin Contributions
    0

    Default Re: Manufacturers name to order email

    Its working thanks a lot...

 

 

Similar Threads

  1. v155 Add company name to order confirmation email
    By Ryder in forum General Questions
    Replies: 5
    Last Post: 17 Aug 2016, 01:13 AM
  2. Duplicate Item Name / Product name repeat Order Confirmation Email
    By jsarwar in forum Managing Customers and Orders
    Replies: 3
    Last Post: 21 Nov 2014, 02:57 PM
  3. v139h Add customer name to end of title of admin order email
    By dgent in forum General Questions
    Replies: 1
    Last Post: 13 Nov 2014, 11:11 AM
  4. Can I add the manufacturers name to product name?
    By icecold in forum General Questions
    Replies: 4
    Last Post: 3 Jun 2012, 06:18 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