public async Task <IActionResult> SendMail(ContactInputModel inputModel, [FromServices] IEmailSender emailSender)
        {
            await emailSender.SendEmailAsync(inputModel.Email, "Request from our website", inputModel.ToHtmlMessage());

            return(RedirectToAction(nameof(ThankYou)));
        }