#Mails general reply to configuration

4 messages · Page 1 of 1 (latest)

green merlin
#

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'),
],
magic anchor
#

yes, you may define a global "reply_to" address within your config/mail.php

green merlin
#

Thank you @magic anchor 🙏