File: D:/HostingSpaces/Neopoints/momsecurity.be/app/Komma/Auth/AuthMailServiceInterface.php
<?php
namespace App\Komma\Auth;
use App\Komma\Users\Models\User;
/**
* Class AuthMailService
*
* A service responsible for sending mails about authorisation and authentication.
*
* @see OrderMailService
* @package App\Komma\Auth
*/
interface AuthMailServiceInterface
{
/**
* Notify admins that a new user has been created
*
* @param $customer
*/
public function notifyAdminsForNewCustomer(User $customer);
/**
* Notify user that he needs to set a password to login
*
* @param User $newUser
* @return mixed
*/
public function notifyUserToSetPassword(User $newUser);
}