You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to change the subject of the emails sent with confide based on my lang files.
I've edited 'Email Views' in config.php but there's no configuration option for the email subject from
EloquentPasswordService.php, or I might missed it.
function ($message) use ($user, $token, $lang) {
$message
->to($user->email, $user->username)
->subject($lang->get('confide::confide.email.password_reset.subject'));
}
Thanks
The text was updated successfully, but these errors were encountered:
@robert-codern, I had this issue recently. You have to make another confide.php file in your lang folder. The file path is like this: your_app/app/lang/packages/language_name/confide/confide.php. From there, you can override the defaults in the Confide package.
Hello,
I would like to change the subject of the emails sent with confide based on my lang files.
I've edited 'Email Views' in config.php but there's no configuration option for the email subject from
EloquentPasswordService.php, or I might missed it.
Thanks
The text was updated successfully, but these errors were encountered: