hello everyone,
in laravel mails configuration, Is it applicable to set the mails reply to value just like from address?
Example:
/*
|--------------------------------------------------------------------------
| Global "Replay to" Address
|--------------------------------------------------------------------------
|
|
*/
'reply_to' => [
'address' => env('MAIL_REPLY_TO_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_REPLY_TO_NAME', 'Example'),
],