I am trying to override the actionUrl that is being put in an Email to reset a users account. But it stays the same no matter what I do. I tried overriding in my Route files. Can anybody help me ?
Here is the route in my routes file :
Route::get('cms/password/reset/{token}', 'Auth\ResetPasswordController@showResetForm');
Here is my email template :
<p style="{{ $style['paragraph-sub'] }}">
<a style="{{ $style['anchor'] }}" href="{{ $actionUrl }}" target="_blank">
{{ $actionUrl }}
</a>
</p>`
I know actionUrl is defined in SimpleMessage.php but I don't know where it's set.