Skip to content

Instantly share code, notes, and snippets.

@mikebrind
Created March 19, 2019 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikebrind/06257831e3d6c23e19bde6477dbf508a to your computer and use it in GitHub Desktop.
Save mikebrind/06257831e3d6c23e19bde6477dbf508a to your computer and use it in GitHub Desktop.
using System.Threading.Tasks;
namespace RazorPartialToString.Services
{
public interface IEmailService
{
Task SendAsync(string email, string name, string subject, string body);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment