1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Change recipient of cancelled email

This commit is contained in:
Hillel Coren 2017-03-07 10:27:14 +02:00
parent c3c7a8d4e3
commit 72bd5c4aa7

View File

@ -1343,7 +1343,7 @@ class AccountController extends BaseController
$subject = 'Invoice Ninja - Canceled Account';
$this->userMailer->sendTo(CONTACT_EMAIL, $email, $name, $subject, 'contact', $data);
$this->userMailer->sendTo(env('CONTACT_EMAIL', CONTACT_EMAIL), $email, $name, $subject, 'contact', $data);
}
$user = Auth::user();