An asynchronous operation cannot be started at this time
问题 I am making a call to asynchronous operation with the following line of code: Task.Run(() => { _emailService.SendEmail(email); }).Wait(); public async Task<bool> SendEmail(EmailTemplate email) { try { using (Client) { await Client.SendMailAsync(email.Message); return true; } } catch (Exception ex) { Logger.Fatal(ex.ToString(), "Error occurred while sending an Email."); return false; } } When the code ran the first time, it worked without issues and I received my email, however when I run it