I'm using Laravel's built in login system (php artisan make:auth
) and I linked my Mailgun account for sending reset emails. But how can I define tags?
According to Mailgun's documentation tag needs to be added to function that sends emails.
https://documentation.mailgun.com/user_manual.html#tagging
'o:tag' => 'Password reset'
Where can I find that function and how to add o:tag
into it?