Skip to content

Instantly share code, notes, and snippets.

@lasseebert
Created October 21, 2016 19:41
Show Gist options
  • Select an option

  • Save lasseebert/26f81a70cb32819029525465e7afa95a to your computer and use it in GitHub Desktop.

Select an option

Save lasseebert/26f81a70cb32819029525465e7afa95a to your computer and use it in GitHub Desktop.
defmodule InviteUser do
def invite(email, mailer \\ Mailer) do
user = create(email)
mailer.send_activation_mail(user)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment