Skip to content

Instantly share code, notes, and snippets.

@andriysavin
Created May 24, 2019 15:46
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 andriysavin/357a85279933260c1ff4fa84fdc8d01b to your computer and use it in GitHub Desktop.
Save andriysavin/357a85279933260c1ff4fa84fdc8d01b to your computer and use it in GitHub Desktop.
class SmtpEmailMessageSender : IEmailMessageSender
{
public void SendMessage(EmailMessage message)
{
// Put your real implementation here.
Console.WriteLine(message.Body);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment