Full service web hosting, great prices and support. Starts at $1.99/month!
Results 1 to 8 of 8

Thread: Adding email address and phone number to Order Email

  1. #1
    ozdunker
    Guest


    Default Adding email address and phone number to Order Email

    How can I add the email address and phone number to the order email.

    We require these details on the order email, so that this information can be recorded on the postage for tracking purposes.

    Is there an on/off button somewhere? Or is a mod required?

  2. #2
    ozdunker
    Guest


    Default Re: Adding email address and phone number to Order Email

    any ideas here? please

  3. #3
    osCMax Development Team

    Adding email address and phone number to Order Email

    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    3,517
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    pgmarshall     $ 35.00
    Rep Power
    81


    Default Re: Adding email address and phone number to Order Email

    The email is constructed in catalog/checkout_process.php

    Look around line 371:
    // lets start with the email confirmation
    Regards,
    pgmarshall
    _______________________________

  4. #4
    ozdunker
    Guest


    Default Re: Adding email address and phone number to Order Email

    This is really annoying that this isnt a feature. How do other people take the order information and put it into an online postage system. I copy and paste the details from the order email, not having the email address means I then have to log into the admin system to recover it.

  5. #5
    osCMax Development Team

    Adding email address and phone number to Order Email

    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    3,517
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    pgmarshall     $ 35.00
    Rep Power
    81


    Default Re: Adding email address and phone number to Order Email

    Did you even try and change the code?

    Regards,
    pgmarshall
    _______________________________

  6. #6
    osCMax Development Team

    Adding email address and phone number to Order Email

    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    3,517
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    pgmarshall     $ 35.00
    Rep Power
    81


    Default Re: Adding email address and phone number to Order Email

    I am going to assume you are using the send extra email to functionality ...

    Change:

    Code:
    // send emails to other people
      if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
        tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);
      }
    to


    Code:
    // send emails to other people
      if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
        $email_order2 = $email_order . EMAIL_SEPARATOR . "\n" . $order->customer['email_address'];
        tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_TEXT_SUBJECT, $email_order2, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);
      }
    Should work - not tested though.

    Regards,
    pgmarshall
    _______________________________

  7. #7
    ozdunker
    Guest


    Default Re: Adding email address and phone number to Order Email

    Hi

    Yes I did spend a couple of hours looking at the code and other mods on the net. But they seemed two complex for me, or were several years old and i didnt want to change to older code incase it wrecked something else.

    There are numerous requests for having these two items added to the order emails.

    I use the extra email functionalitly to send copies of the order to the person who will send out the orders, however they need the email address and phone number particularly for international orders. I dont want that other person logging into the admin section of the store.

    On the order email, it would be great to have the delivery address and then directly underneath, email address and phone number. I am not sure what you refer to above is going to do that.

  8. #8
    osCMax Development Team

    Adding email address and phone number to Order Email

    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    3,517
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    pgmarshall     $ 35.00
    Rep Power
    81


    Default Re: Adding email address and phone number to Order Email

    No it will not put the address in - what I posted will do what you initially asked for! - add the email address in the duplicate email! We are going to be potentially creating customisable email templates for v2.6 - However, I am also going to review the email output of osCmax prior to the stable release so I will put this on the list of things to consider. Regards,
    pgmarshall
    _______________________________

Similar Threads

  1. order number in email subject
    By michael_s in forum New osCommerce Contributions
    Replies: 0
    Last Post: 02-16-2007, 01:10 PM
  2. how do we include phone number in the order email?
    By chuan in forum osCmax v2 Customization/Mods
    Replies: 2
    Last Post: 10-16-2006, 12:43 AM
  3. Adding admin: Email address format invalid xxx.yyy@xxx.co.uk
    By JonMWilson in forum osCMax v2 Features Discussion
    Replies: 3
    Last Post: 01-09-2006, 08:15 PM
  4. How to Add Phone Number to Shipping Address?
    By nemail in forum osCmax v1.7 Discussion
    Replies: 0
    Last Post: 08-09-2005, 02:54 PM
  5. How to add cust phone # & other to Order Process Email
    By gameparts in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 01-14-2005, 09:59 AM

Bookmarks

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
  •