Skip to content

Instantly share code, notes, and snippets.

@AymericG
Created April 28, 2012 04:05
Show Gist options
  • Save AymericG/2515675 to your computer and use it in GitHub Desktop.
Save AymericG/2515675 to your computer and use it in GitHub Desktop.
How to implement unsubscription.
public ActionResult Unsubscribed(string id)
{
_userService.UnsubscribeFromEmails(id);
return View();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment