public async Task <NotifierResponseSM> SendForgotPasswordNotificationAsync(UserSM user, string callbackUrl)
        {
            if (user != null)
            {
                var message = new MessageSM
                {
                    From         = GetFrom(),
                    To           = user.Email,
                    GreetingName = GetGreetingName(user),
                    Subject      = "Reset Password",
                    MessageBody  = $"Please reset your password by clicking here: <a href='{callbackUrl}'>link</a>",
                };
                var response = await _notifierService.SendNotificationAsync(message);

                return(response);
            }

            return(null);
        }