Damian

Results 2 comments of Damian

@GeorgeAlexandria Thank you for great work on this. Cannot wait for 2022 release! Thanks

SendEmailAsync is thread safe. First thing it does is ``` return await this.RequestAsync( Method.POST, msg.Serialize(), urlPath: "mail/send", cancellationToken: cancellationToken).ConfigureAwait(false); ``` Nothing unsafe for threads here. Using only local variables. Then...