Page 1 of 1
New Account Alert Mail 1.5.2
Posted: Thu Mar 29, 2012 11:36 pm
by fillydilly
Hi folks
I have a problem with the the "New Account Alert Mail" option. I have checked it as "Yes". But when a new customer is created the only mail I receive in my mail-box is an exact copy of the Welcome mail the customer received. Is it supposed to be like this or is something very wrong with my install?
Thanks.
Re: New Account Alert Mail 1.5.2
Posted: Fri Mar 30, 2012 2:45 pm
by fillydilly
bump
Re: New Account Alert Mail 1.5.2
Posted: Sat Mar 31, 2012 6:52 pm
by chrclmnky
BUMP
I am experiencing this too. Please help.
Re: New Account Alert Mail 1.5.2
Posted: Sun Apr 01, 2012 5:25 pm
by maya
Hello everyone,
Yes I have the same problem? The email is coming to admin address but not to one provided in System/Settings/Mail
Is that correct or I have something wrong?
Thank you
Re: New Account Alert Mail 1.5.2
Posted: Sun Apr 01, 2012 6:35 pm
by dandangboski
Hello, I have just installed opencart, and have been trying it to make sure everything works correctly. When there is a new registration or order, neither the customer nor I receive the automatic registration/order confirmation. How do fix this?
Thank you.
Re: New Account Alert Mail 1.5.2
Posted: Wed May 23, 2012 2:30 pm
by gabbya
one more e-mail problem
After order update status no e-mail send to customer to notify him

Re: New Account Alert Mail 1.5.2
Posted: Mon May 28, 2012 10:29 pm
by webberley
ANOTHER person with email problems, I don't get any emails telling me of new registrations.
I know SOMETHING is working because OC manages to email the customer telling them their registration has been accepted and is awaiting approval. So why don't I get anything?? (yes, the notify of new registration box is ticked).
Re: New Account Alert Mail 1.5.2
Posted: Fri Jun 15, 2012 11:28 pm
by shjuan85
I would need information of the new customer who has just registered as well instead of the same email that customers are receiving. Please help.
Re: New Account Alert Mail 1.5.2
Posted: Wed Jul 11, 2012 11:20 pm
by kgkaraoke
fillydilly wrote:Hi folks
I have a problem with the the "New Account Alert Mail" option. I have checked it as "Yes". But when a new customer is created the only mail I receive in my mail-box is an exact copy of the Welcome mail the customer received. Is it supposed to be like this or is something very wrong with my install?
Thanks.
Daniel Kerr apparently couldn't care less.
He told me not to waste his time. He said that
he hasn't added the feature and that it's not
serious because the cart still works, and the information
is available anyway within the Admin section.
Re: New Account Alert Mail 1.5.2
Posted: Sat Aug 04, 2012 6:15 am
by oasisfleeting
same problem here. I guess I will code this portion of the cart for you guys.
Re: New Account Alert Mail 1.5.2
Posted: Sat Aug 04, 2012 6:47 am
by oasisfleeting
Here is quick vqmod snippet to change the subject and body of the admin mail
Code: Select all
<file name="catalog/model/account/customer.php">
<operation>
<search position="replace"><![CDATA[
$mail->setTo($this->config->get('config_email'));
]]></search>
<add><![CDATA[
$mail->setTo($this->config->get('config_email'));
$mail->setSubject('A new user has registered');
$mail->setText('A new user has registered and is awaiting approval');
]]></add>
</operation>
</file>
Re: New Account Alert Mail 1.5.2
Posted: Sat Aug 04, 2012 7:58 pm
by shjuan85
we have to create a xml file to place this in?