Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I remove the account set up email?


Guest

Recommended Posts

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

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...