Version 3.0.2 should include SendWithTemplateAsync but it doesn't
Looking into the source code, Version 3.0.2 should include the functionality to send SendGrid email with templates. But including the NuGet version 3.0.2 of FluentEmail.SendGrid, inspecting, this function is missing.

https://github.com/lukencode/FluentEmail/blob/master/src/Senders/FluentEmail.SendGrid/SendGridSender.cs
` public async Task<SendResponse> SendWithTemplateAsync(IFluentEmail email, string templateId, object templateData, CancellationToken? token = null) { var mailMessage = await BuildSendGridMessage(email);
mailMessage.SetTemplateId(templateId);
mailMessage.SetTemplateData(templateData);
var sendResponse = await SendViaSendGrid(mailMessage, token);
return sendResponse;
}
`
Very confusing indeed, and I was really relying on this when choosing my implementation. Did you find a workaround? Did it work on versions before 3.0.2?
I removed the Sendgrid package, and implemented it using FluentEmail.Core, and my own build of the FluentEmail.Sendgrid with the function included.
I confirm, there is a lot missing in respect to what is in the source code on GitHub