mbevia
September 30, 2016, 12:00am
1
Hello, I am making up my mind to what plans i should use...then all my clients are getting these emails.
A sum of 2,95 € has been withdrawn from your account for using the plan. Follow the link to view your account balance or see the details of your plan below.
I don't ever want to my clients to recieve these emails, neither monthly either. how can I stop these emails.
Thanks.
app/addons/vendor_plans/Tygh/Models/Company.php
replace:
Mailer::sendMail(array(
'to' => 'company_support_department',
'from' => 'default_company_support_department',
'data' => array(
'vendor' => $this,
'plan' => $this->plan,
),
'tpl' => 'addons/vendor_plans/companies/payment.tpl',
'company_id' => $this->company_id,
), 'A', $this->lang_code);
with:
/*
Mailer::sendMail(array(
'to' => 'company_support_department',
'from' => 'default_company_support_department',
'data' => array(
'vendor' => $this,
'plan' => $this->plan,
),
'tpl' => 'addons/vendor_plans/companies/payment.tpl',
'company_id' => $this->company_id,
), 'A', $this->lang_code);
*/
mbevia
October 3, 2016, 12:00am
3
app/addons/vendor_plans/Tygh/Models/Company.php
replace:
Mailer::sendMail(array(
'to' => 'company_support_department',
'from' => 'default_company_support_department',
'data' => array(
'vendor' => $this,
'plan' => $this->plan,
),
'tpl' => 'addons/vendor_plans/companies/payment.tpl',
'company_id' => $this->company_id,
), 'A', $this->lang_code);
with:
/*
Mailer::sendMail(array(
'to' => 'company_support_department',
'from' => 'default_company_support_department',
'data' => array(
'vendor' => $this,
'plan' => $this->plan,
),
'tpl' => 'addons/vendor_plans/companies/payment.tpl',
'company_id' => $this->company_id,
), 'A', $this->lang_code);
*/
Thank you very much eComLabs! I much appreciate your help.