Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Apr 2006
    Location
    Bournemouth UK
    Posts
    48
    Plugin Contributions
    0

    Default Need to send product specific detail in confirmation email

    Hi all

    I have 6 secured PDF's for download, each 1 requiring it's own password/user ID to a access.

    What I would like to do is send the correct password/user ID in the confirmation email. Can anyone tell me how I could do this and where I would store the relevent details to be retrieved by the email?
    Best Regards

    Keith

    ######################################################################################################################################################____

    I,m getting there, slowly but eZENtually


    .

  2. #2
    Join Date
    Jul 2006
    Posts
    8
    Plugin Contributions
    0

    Default Re: Need to send product specific detail in confirmation email

    wish i could help keith,
    I have the same dilemma
    just want an email sent to the customer, with a link for the download.
    seems simple, but like you, i cant find the answers.
    if i do , ill let you know.
    hope you will do the same.

  3. #3
    Join Date
    Apr 2006
    Location
    Bournemouth UK
    Posts
    48
    Plugin Contributions
    0

    Default Re: Need to send product specific detail in confirmation email

    Hi raymondg

    Thanks, I do have an idea, just trying to figure out how to implement it. Will post it here if I succeed.

    How is your download setup, is it in a separate location to your zen cart ? If not, ZC should provide a download link automatically if it has been setup correctly.
    Best Regards

    Keith

    ######################################################################################################################################################____

    I,m getting there, slowly but eZENtually


    .

  4. #4
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Need to send product specific detail in confirmation email

    Quote Originally Posted by raymondg
    wish i could help keith,
    I have the same dilemma
    just want an email sent to the customer, with a link for the download.
    If they are purchasing a downloadable product, then the links are provided on the checkout-success page as well as in the My Account area.

    If you are wanting to send a link separately after-the-fact, you can do it manually by adding details in the Order Comments and clicking Update under Admin->Orders
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    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.

  5. #5
    Join Date
    Apr 2006
    Location
    Bournemouth UK
    Posts
    48
    Plugin Contributions
    0

    Default Re: Need to send product specific detail in confirmation email

    OK in reference to the first post in this thread, I have got the downloads set up, tested and working.

    The confirmation email currently being sent out displays:

    Order Confirmation Company Name

    Customer Name,
    Thanks for shopping with us today!
    The following are the details of your order.

    Order Number: 3
    Date Ordered: Friday 28 July, 2006
    Click here for a Detailed Invoice

    Products Info & Billing Address
    The Email I would like to send looks like this:

    Order Confirmation Company Name

    Customer Name,
    Thanks for shopping with us today!
    The following are the details of your order.

    Your Keycode
    The Code to access the Product you have downloaded is:

    [Product_Keycode field data]

    Order Number: 3
    Date Ordered: Friday 28 July, 2006
    Click here for a Detailed Invoice

    Products Info & Billing Address

    would this work, and if there is anything missing can anyone tell me what else needs to be completed and how.

    1. Create a new field titled Product_Keycode in the Products_Details Table.
    2. Add keycode data into new field.
    3. Create Email Text Title defines in checkout_process.php.
    4. Create Email Text Content defines in checkout_process.php.
    5. Add defines to checkout email template.

    Any help or advice greatly appreciated TIA
    Best Regards

    Keith

    ######################################################################################################################################################____

    I,m getting there, slowly but eZENtually


    .

  6. #6
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Need to send product specific detail in confirmation email

    where will you get the keycode from? Is it unique that customer? or is it a generic password?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    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.

  7. #7
    Join Date
    Apr 2006
    Location
    Bournemouth UK
    Posts
    48
    Plugin Contributions
    0

    Default Re: Need to send product specific detail in confirmation email

    It is a Generic password that is set to to the Product.

    BTW my previous post should read Product_Description table and not Product_Details table.
    Best Regards

    Keith

    ######################################################################################################################################################____

    I,m getting there, slowly but eZENtually


    .

  8. #8
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Need to send product specific detail in confirmation email

    includes/classes/order.php
    around line 816 you have:
    PHP Code:
          // include onetime charges 
    Right above that, add:
    PHP Code:
    $this->products_ordered_attributes .= "\n" 'The password to unlock these files is: t28s8vsv3a'
    and put your password in where appropriate.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    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.

  9. #9
    Join Date
    Apr 2006
    Location
    Bournemouth UK
    Posts
    48
    Plugin Contributions
    0

    Default Re: Need to send product specific detail in confirmation email

    Is this code insert, instead of or in addition to the steps I mentioned earlier ? and do I need to put all these changes in My Template directory ?
    Best Regards

    Keith

    ######################################################################################################################################################____

    I,m getting there, slowly but eZENtually


    .

  10. #10
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Need to send product specific detail in confirmation email

    You could almost do it "instead of" what you suggested earlier.

    The file I indicated doesn't have any overrides, so can't override it. Just edit and replace the existing file. (make notes so you can re-do it when upgrading).
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    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.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 How to remove unwanted detail in Order Confirmation email?
    By Athens Collectibles in forum General Questions
    Replies: 4
    Last Post: 26 May 2012, 08:10 PM
  2. Send additional order confirmation email based on product ordered.
    By abcschooldr in forum General Questions
    Replies: 8
    Last Post: 20 Mar 2012, 09:35 PM
  3. Product specific confirmation email
    By odlarn in forum Customization from the Admin
    Replies: 0
    Last Post: 14 Sep 2010, 12:51 AM
  4. Replies: 0
    Last Post: 6 Oct 2009, 05:15 PM
  5. Re-send Confirmation / Welcome Email
    By kwright in forum General Questions
    Replies: 3
    Last Post: 23 Jul 2008, 06: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