You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several methods currently on the IMail interface are what I call "convenience" methods: they address common scenarios like sending the same email to multiple recipients, sending a single email without using a template, sending a single email using a legacy template, sending a single email using a dynamic template, etc. and behind the scene they simply invoke the IMail.SendAsync method with the appropriate parameters for the given scenario.
These methods should be implemented as extension methods and only the SendAsync method should be on the IMail interface.
The text was updated successfully, but these errors were encountered:
Several methods currently on the IMail interface are what I call "convenience" methods: they address common scenarios like sending the same email to multiple recipients, sending a single email without using a template, sending a single email using a legacy template, sending a single email using a dynamic template, etc. and behind the scene they simply invoke the IMail.SendAsync method with the appropriate parameters for the given scenario.
These methods should be implemented as extension methods and only the
SendAsync
method should be on the IMail interface.The text was updated successfully, but these errors were encountered: