Send email from several directions laravel

0

I have 2 emails to send notifications to my users one is [email protected] and the other [email protected] the issue is that in the .env file I can only configure one if I add another configuration it does not take it from what form can I configure both emails for sending the notifications

    
asked by Andersson Meza Andrade 13.06.2018 в 22:58
source

1 answer

0

You could use the from() method

/**
 * Build the message.
 *
 * @return $this
 */
public function build()
{
    return $this->from('[email protected]')
                ->view('emails.orders.shipped');
}

You must use it in your mailable class. More information on the documentation

    
answered by 19.06.2018 в 17:41