Guest Posted April 3, 2003 Share Posted April 3, 2003 When one registers at my site, they get an email saying: Dear person, We welcome you to Store Name. You can now take part in the various services we have to offer you. Some of these services include: Permanent Cart - Any products added to your online cart remain there until you remove them, or check them out. Address Book - 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. Order History - View your history of purchases that you have made with us. Products Reviews - Share your opinions on products with our other customers. For help with any of our online services, please email the store-owner: [email protected]. Note: This email address was given to us by one of our customers. If you did not signup to be a member, please send a email to [email protected]. I just want to get rid of this. How do I? Link to comment Share on other sites More sharing options...
josheli Posted April 3, 2003 Share Posted April 3, 2003 there is a setting in the admin, under Configuration -> Email Options Link to comment Share on other sites More sharing options...
Guest Posted April 3, 2003 Share Posted April 3, 2003 Sorry David......wrong answer. Suggest you look at the adimin before sending people on wild goose chases. To disable the "welcome email" take a look at catalog/create_account.php About 3 lines from the end of the file it says: // build the message content $name = $firstname . " " . $lastname; if (ACCOUNT_GENDER == 'true') { if ($HTTP_POST_VARS['gender'] == 'm') { $email_text = EMAIL_GREET_MR; } else { $email_text = EMAIL_GREET_MS; } } else { $email_text = EMAIL_GREET_NONE; } $email_text .= EMAIL_WELCOME . EMAIL_TEXT . EMAIL_CONTACT . EMAIL_WARNING; tep_mail($name, $email_address, EMAIL_SUBJECT, nl2br($email_text), STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); Comment out the line that begins with tep_email. Link to comment Share on other sites More sharing options...
josheli Posted April 3, 2003 Share Posted April 3, 2003 what does this do? or this line in tep_mail() function? if (SEND_EMAILS != 'true') return false; Link to comment Share on other sites More sharing options...
Guest Posted April 3, 2003 Share Posted April 3, 2003 David you have to have emails enabled in the admin to be able to send ANY email from the catalog. That includes the welcome letter, the order confirmation, the contact us email, etc. Turning that off disables all of them. Link to comment Share on other sites More sharing options...
josheli Posted April 3, 2003 Share Posted April 3, 2003 i know. Link to comment Share on other sites More sharing options...
Guest Posted April 3, 2003 Share Posted April 3, 2003 Then what was the point of your previous post? I'm confused as to what you are wanting. Link to comment Share on other sites More sharing options...
radders Posted April 3, 2003 Share Posted April 3, 2003 If you can't find it in create_account.php try create_account_process.php instead Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.