“Reply-to” field in Laravel mail is not working

前端 未结 3 1332
陌清茗
陌清茗 2020-12-09 15:34

I need help to figure out how to set the reply-to field in app/config/mail.php. I\'m using Laravel 4 and it\'s not working. This is my app/co

3条回答
  •  执念已碎
    2020-12-09 16:02

    I'm using mailable and in my App\Mail\NewUserRegistered::class on the build function I'm doing this,

    public function build()
        {
            return $this->replyTo('email', $name = 'name')
                    ->markdown('emails.admin_suggestion');
        }
    

提交回复
热议问题