jeremykenedy / laravel-users

A Users Management Package that includes all necessary routes, views, models, and controllers for a user management dashboard and associated pages for managing Laravels built in user scaffolding. Built for Laravel 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6.0, 7.0 and 8.0.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

login with admin

itsandrehere opened this issue · comments

Swift_RfcComplianceException
Address in mailbox given [] does not comply with RFC 2822, 3.6.2.

Do you know how I can solve it?
thnx.

My first thought is the only section that does any kind of checking on the email is the Validator in the following lines:

https://github.com/jeremykenedy/laravel-users/blob/master/src/App/Http/Controllers/UsersManagementController.php#L94

https://github.com/jeremykenedy/laravel-users/blob/master/src/App/Http/Controllers/UsersManagementController.php#L201

You can try and adjust the validation rules above, but if its higher level it would be an issue with the Laravel Validation class.

That uses the Laravel Validator rule for email: https://laravel.com/docs/5.6/validation#rule-email

I am confused by opened issue and this package because this package does not send email in any way.

Thanks,

Jeremy