Results 1 to 8 of 8
  1. #1
    Join Date
    Aug 2007
    Location
    Brighton, UK
    Posts
    203
    Plugin Contributions
    0

    Default Changing welcome email

    Its been months since ive played around with the basics LOL so forgotten what php file i have to change to edit text in welcome email, could someone please tell me where it is Lol appreciated!

    Elliot

  2. #2
    Join Date
    Sep 2006
    Location
    Colorado Springs CO USA
    Posts
    516
    Plugin Contributions
    2

    Default Re: Changing welcome email

    /admin/includes/languages/english/add_customers.php

    /includes/languages/english/[your_custom_template_name]/create_account.php

    or if you don't use a custom template then:

    /includes/languages/english/create_account.php

    Ron
    www.aspenshopsonline.com - ZenCart 1.3.9h
    www.wilkssupply.com - ZenCart 1.3.9h
    www.un-du.net - ZenCart 1.3.8a

  3. #3
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    customer issue Re: Changing welcome email

    Quote Originally Posted by ronlee67 View Post
    /admin/includes/languages/english/add_customers.php
    Note: there's no such file in a default install of Zen Cart.

    FAQ: https://www.zen-cart.com/tutorials/index.php?article=20
    .

    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.

  4. #4
    Join Date
    Sep 2006
    Location
    Colorado Springs CO USA
    Posts
    516
    Plugin Contributions
    2

    Default Re: Changing welcome email

    Quote Originally Posted by DrByte View Post
    Originally Posted by ronlee67
    /admin/includes/languages/english/add_customers.php
    Note: there's no such file in a default install of Zen Cart.
    You are quite correct. Sorry about that. This particular file is from the download "Add Customers from Admin" contribution. No need to look for and modify this file unless you have that contribution installed.

    Ron
    www.aspenshopsonline.com - ZenCart 1.3.9h
    www.wilkssupply.com - ZenCart 1.3.9h
    www.un-du.net - ZenCart 1.3.8a

  5. #5
    Join Date
    Aug 2007
    Location
    Brighton, UK
    Posts
    203
    Plugin Contributions
    0

    Default Re: Changing welcome email

    Quote Originally Posted by ronlee67 View Post
    /admin/includes/languages/english/add_customers.php

    /includes/languages/english/[your_custom_template_name]/create_account.php

    or if you don't use a custom template then:

    /includes/languages/english/create_account.php

    Ron
    Quote Originally Posted by DrByte View Post
    Note: there's no such file in a default install of Zen Cart.

    FAQ: https://www.zen-cart.com/tutorials/index.php?article=20

    Cheers!

  6. #6
    Join Date
    Jun 2004
    Posts
    113
    Plugin Contributions
    0

    Default Re: Changing welcome email

    Thanks - this thread helped me out too.

    Now I'm wondering where to find the email that is sent when a person makes an order... it seems like it would be one of the checkout_*.php files but I'm not 'seeing it'... a pointer would be appreciated.

    Thanks!

  7. #7
    Join Date
    Sep 2009
    Posts
    254
    Plugin Contributions
    0

    Default Re: Changing welcome email

    I am not sure if this is the tread to post this, but I will give it a try. I am trying to change the text of the welcome email that is sent out. But when I try to add more than one sentence in the section listed below, the page does not show up. So I am wondering what is wrong with my coding that is causing the checkout page after account creation not show up. I am editing the includes/languages/english/create_account.php file.

    This coding works:
    PHP Code:
    define('EMAIL_TEXT''We hope you enjoy our product selection as much as we do.' "\n\n" 'With your account, you can now take part in the <strong>various services</strong> it has to offer you. Some of these services include:' "\n\n" '<li><strong>Permanent Cart</strong> - Any products added to your online cart remain there until you remove them, or check them out.' "\n\n" '<li><strong>Order History</strong> - View your history of purchases that you have made and gain access to your downloads.' "\n\n" ); 
    This does not work:
    PHP Code:
    define('EMAIL_TEXT''We hope you enjoy our product selection as much as we do.<br/><br/>We hope you enjoy our product selection as much as we do.  We designed our company in an effort to make looking good affordable to everyone, we don't think you should have to spend an arm and a leg to be in style.  Browse our items and if you don't see what you are looking for contact us at (email address).' "\n\n" 'With your account, you can now take part in the <strong>various services</strong> it has to offer you. Some of these services include:' "\n\n" '<li><strong>Permanent Cart</strong> - Any products added to your online cart remain there until you remove them, or check them out.' "\n\n" '<li><strong>Order History</strong> - View your history of purchases that you have made and gain access to your downloads.' "\n\n" ); 
    Can anyone help me figure out what is wrong? Thanks!

  8. #8
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Changing welcome email

    Quote Originally Posted by lauriesscraps View Post
    But when I try to add more than one sentence in the section listed below, the page does not show up.
    https://www.zen-cart.com/tutorials/index.php?article=82

    Quote Originally Posted by lauriesscraps View Post
    This does not work:
    define('EMAIL_TEXT', 'We hope you enjoy our product selection as much as we do.<br/><br/>We hope you enjoy our product selection as much as we do. We designed our company in an effort to make looking good affordable to everyone, we don't think you should have to spend an arm and a leg to be in style. Browse our items and if you don't see what you are looking for contact us at (email address).' . "\n\n" . 'With your account, you can now take part in the <strong>various services</strong> it has to offer you. Some of these services include:' . "\n\n" . '<li><strong>Permanent Cart</strong> - Any products added to your online cart remain there until you remove them, or check them out.' . "\n\n" . '<li><strong>Order History</strong> - View your history of purchases that you have made and gain access to your downloads.' . "\n\n" );
    You're mixing apostrophes into your text, thus causing syntax errors.
    ref: https://www.zen-cart.com/tutorials/index.php?article=87
    .

    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.

 

 

Similar Threads

  1. Changing content of welcome email?
    By rssell in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 19 Nov 2012, 02:15 AM
  2. Changing welcome email
    By ben harry in forum General Questions
    Replies: 1
    Last Post: 14 Aug 2011, 05:28 PM
  3. Changing the Email Welcome
    By richard.rodriguez in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 11 Jan 2010, 11:21 PM
  4. Changing welcome email
    By boetheus in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 1
    Last Post: 23 Dec 2006, 10:04 PM

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