Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save robinvanderknaap/e886cef3d84282d48de20aee37d21345 to your computer and use it in GitHub Desktop.
Save robinvanderknaap/e886cef3d84282d48de20aee37d21345 to your computer and use it in GitHub Desktop.
class NewsLetter
{
private IMailer mailer = null;
public NewsLetter(IMailer mailer)
{
this.mailer = mailer;
}
public void SendNewsLetter(string Email)
{
this.mailer.send(this, Email);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment