Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Get email on customer signup


Guest

Recommended Posts

Hello All:

 

 

Dows anyone know if there is a contribution or a code modification for when a customer signs up the site admin gets an email. Or get an email with the users info...?

 

Thanks in advance.

Link to comment
Share on other sites

Hello All:

 

 

Dows anyone know if there is a contribution or a code modification for when a customer signs up the site admin gets an email. Or get an email with the users info...?

 

Thanks in advance.

I use a contrib that e-mail a copy of anything and everything that goes from the site to me.

 

I'll try and find out what name it was.

Link to comment
Share on other sites

I have in admin for emails sending to two different people at different email addresses without any problems, this can be done in the shop owner email address and or the send extra emails.

 

I have it set this way so that sales can get an email, dispatch can get an email, marketing can get an email and I get an email.

 

If site admin is the address for emails to or from the shop owner they get it automatically and if others need to receive an email just add them in to that field

No longer giving free advice. Please place deposit in meter slot provided.  Individual: [=] SME: [==] Corporation: [===]
If deposit does not fit one of the slots provided then you are asking too much! :P

Is your Osc dated try Phoenix  raising oscommerce from the ashes.

Link to comment
Share on other sites

hi, in admin I can only add extra email to receive a email when some one place an order. under "Send Extra Order Emails To"

but we want to receive a email notification when some one signed up for an account.

 

also how do I sort the customers list by date they joined?

please advise!

Link to comment
Share on other sites

hi, in admin I can only add extra email to receive a email when some one place an order. under "Send Extra Order Emails To"

but we want to receive a email notification when some one signed up for an account.

As i mentioned in my earlier post, there is a contrib that does this for you, but i can't find it.

 

I have narrowed down what you need to do.

 

 

Please back up your files first.

 

edit your includes/functions/general.php

 

find the section that says

// Send message

$message->build_message();

$message->send($to_name, $to_email_address, $from_email_name, $from_email_address, $email_subject);

 

then add

$message->send('Admin', '[email protected]', $from_email_name, $from_email_address, $email_subject);

 

 

also do the same in admin/includes/functions/general.php

 

 

 

Let me know if this does the job.

Link to comment
Share on other sites

If all they want is to duplicate emails when someone signs up for an account, I would make the change on the create_account page, rather than in the tep_mail function (which will send duplicates of *every* email sent by the store, including those sent *to* the Store Owner, like from the contact_us page. Look for the tep_mail call in create_account.php and after it add

      tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, EMAIL_SUBJECT, $email_text, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);

Hth,

Matt

Always back up before making changes.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...