Skip to content

Instantly share code, notes, and snippets.

@r-k-b
Last active April 9, 2018 22:44
Show Gist options
  • Select an option

  • Save r-k-b/d2e8a892153ba4a2f08bfc3350004487 to your computer and use it in GitHub Desktop.

Select an option

Save r-k-b/d2e8a892153ba4a2f08bfc3350004487 to your computer and use it in GitHub Desktop.
Email subscription "state machine"
digraph G {
"new user" -> "double opt-in\nrequested";
"double opt-in\nrequested" -> "double opt-in\nconfirmed";
"new user" -> "unsubscribed" [color=grey];
"double opt-in\nrequested" -> "unsubscribed" [color=grey];
"double opt-in\nconfirmed" -> "unsubscribed";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment