I need to insert the email data that goes in the .env, directly in the code and not in the .env. However, I can’t figure out which file is getting these settings.
I am using the following line of code just like the laravel 10 documentation
<code>$status = Password::sendResetLink(
$request->only('email')
);
</code>
<code>$status = Password::sendResetLink(
$request->only('email')
);
</code>
$status = Password::sendResetLink(
$request->only('email')
);
Can anyone tell me which file contains the .env settings to send this email?