Wrong email address in "Invoice Not Found"

The email address in the text displayed when invoice is not found is my SMTP username. It should be the “From Address” in settings.

I am assuming this line in err.rblade.php is the reason:
<h4>{{ trans(‘texts.error_contact_text’, [‘mailaddress’ => env(‘CONTACT_EMAIL’, env(‘MAIL_USERNAME’))]) }}</h4>

Here is the text that I see:
Something went wrong…
The requested invoice is not available

If you’d like help please email us at <SMTP username>

I changed it to MAIL_FROM_ADDRESS, and seems to be doing what I expected.

I created a pull request, but there might be more places where this need to be fixed.

Thanks again for the pull request!