Fixes for FROM address
This commit is contained in:
parent
2d3816ece4
commit
5f77f2a73f
3 changed files with 4 additions and 4 deletions
|
|
@ -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…
Add table
Reference in a new issue