Zen Cart Logo
Forums / General Questions / New customer email notification

New customer email notification

Locked

Views: 3,545

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
11 Mar 2007, 4:31 PM
#1
mpence avatar

mpence

New Zenner

Join Date:
Jan 2007
Posts:
20
Plugin Contributions:
0

New customer email notification

Is there a way Zen Cart can email the admin when a new customer registers?

11 Mar 2007, 5:15 PM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: New customer email notification

You could turn it on in the Configuration ... E-Mail settings ...

Send Copy of Create Account Emails To - Status
Send copy of Create Account Status
0= off 1= on

Send Copy of Create Account Emails To
Send copy of Create Account emails to the following email addresses, in this format: Name 1 email@address1, Name 2 email@address2

11 Mar 2007, 5:38 PM
#3
mpence avatar

mpence

New Zenner

Join Date:
Jan 2007
Posts:
20
Plugin Contributions:
0

Re: New customer email notification

Thanks Linda, That is what I was looking for!

12 Jun 2007, 9:56 PM
#4
gb2007 avatar

gb2007

New Zenner

Join Date:
Feb 2007
Posts:
16
Plugin Contributions:
0

Re: New customer email notification

Linda, I did turn it on in the configuration. However I still not getting email notification. Verified the admin email is working with no problem.

What else am I missing? It did work a few weeks ago when testing the site but not now...

Ajeh:

You could turn it on in the Configuration ... E-Mail settings ...

13 Jun 2007, 3:52 PM
#5
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: New customer email notification

Make sure it is turned on and that you have entered a valid email address for it ...

8 Feb 2009, 9:33 PM
#6
southpacific avatar

southpacific

New Zenner

Join Date:
Feb 2009
Location:
Sydney, Australia
Posts:
44
Plugin Contributions:
0

Re: New customer email notification

Does anyone know a mod which will send me changes to customers have made to their address details?

I was thinking something simple like:

$email_message = 'Address change:' . "\n\n";
$email_message .= 'Customer ID:' . $customer_id . "\n";
$email_message .= 'Customer:' . $customers_firstname . ' ' . $lastname . "\n";

  tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, 'Address change', $email_message, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);

I tried putting it under this line:

<?php if ($messageStack->size('addressbook') > 0) echo $messageStack->output('addressbook'); ?>

in address_book_process.php but doesn't seem to work, any suggestions?