si101 Posted October 6, 2005 Share Posted October 6, 2005 Hi all, Basically I just want to modify the email text sent out when a user creates an account, but can't seem to find the file which contains the email text... Any help will be much appreciated. Regards, Simon. Link to comment Share on other sites More sharing options...
Guest Posted October 6, 2005 Share Posted October 6, 2005 I came looking for the same thing :) I need to add the customer's telephone number and email address to the content of the customer receipt, and to the order confirmation that the store owner receives. The telephone number is required for UPS shipping. Any assistance would be appreciated! ;-) Thanks in advance! Amanda Link to comment Share on other sites More sharing options...
jasper98 Posted October 6, 2005 Share Posted October 6, 2005 Hi all, Basically I just want to modify the email text sent out when a user creates an account, but can't seem to find the file which contains the email text... Any help will be much appreciated. Regards, Simon. catalog/includes/languages/english/create_account.php define('EMAIL_SUBJECT', 'Welcome to ' . STORE_NAME); define('EMAIL_GREET_MR', 'Dear Mr. %s,' . "\n\n"); define('EMAIL_GREET_MS', 'Dear Ms. %s,' . "\n\n"); define('EMAIL_GREET_NONE', 'Dear %s' . "\n\n"); define('EMAIL_WELCOME', 'We welcome you to <b>' . STORE_NAME . '</b>.' . "\n\n"); define('EMAIL_TEXT', 'You can now take part in the <b>various services</b> we have to offer you. Some of these services include:' . "\n\n" . '<li><b>Permanent Cart</b> - Any products added to your online cart remain there until you remove them, or check them out.' . "\n" . '<li><b>Address Book</b> - We can now deliver your products to another address other than yours! This is perfect to send birthday gifts direct to the birthday-person themselves.' . "\n" . '<li><b>Order History</b> - View your history of purchases that you have made with us.' . "\n" . '<li><b>Products Reviews</b> - Share your opinions on products with our other customers.' . "\n\n"); define('EMAIL_CONTACT', 'For help with any of our online services, please email the store-owner: ' . STORE_OWNER_EMAIL_ADDRESS . '.' . "\n\n"); define('EMAIL_WARNING', '<b>Note:</b> This email address was given to us by one of our customers. If you did not signup to be a member, please send an email to ' . STORE_OWNER_EMAIL_ADDRESS . '.' . "\n"); Link to comment Share on other sites More sharing options...
si101 Posted October 6, 2005 Author Share Posted October 6, 2005 Thanks for that... Was taking forever sifting through the files... Simon. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.