では動作しません。これは私のコードです:はlaravel 5.3
Mail::send('view',$dataView, function($message) use ($user)
{
$message->from('[email protected]', 'Myname');
$message->subject('This is title');
$message->to([email protected], $user->user_username);
});
それは働きます!しかし、[email protected]をチェックすると、私が.env(MAIL_USERNAME)で設定した "from email"が表示され、コード([email protected])の "emailから"ではなく、どのように変更できるか[email protected]へおかげさまで私の英語についてはごめんなさい。
おかげであなたの答え! – Ocdang85