mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 15:44:33 -04:00
Fixes for FROM address
This commit is contained in:
parent
2d3816ece4
commit
5f77f2a73f
@ -1 +1 @@
|
||||
5.5.84
|
||||
5.5.85
|
@ -134,7 +134,7 @@ class EmailDefaults
|
||||
return $this;
|
||||
}
|
||||
|
||||
$this->email->email_object->from = new Address($this->email->company->owner()->email, $this->email->company->owner()->name());
|
||||
$this->email->email_object->from = new Address(config('mail.from.address'), config('mail.from.name'));
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
@ -14,8 +14,8 @@ return [
|
||||
'require_https' => env('REQUIRE_HTTPS', true),
|
||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||
'app_version' => '5.5.84',
|
||||
'app_tag' => '5.5.84',
|
||||
'app_version' => '5.5.85',
|
||||
'app_tag' => '5.5.85',
|
||||
'minimum_client_version' => '5.0.16',
|
||||
'terms_version' => '1.0.1',
|
||||
'api_secret' => env('API_SECRET', ''),
|
||||
|
Loading…
x
Reference in New Issue
Block a user