Skip to content

Instantly share code, notes, and snippets.

@excid3
Created June 30, 2012 14:32
Show Gist options
  • Select an option

  • Save excid3/3024016 to your computer and use it in GitHub Desktop.

Select an option

Save excid3/3024016 to your computer and use it in GitHub Desktop.
def create
medic = Medic.find(params[:paging][:incharge_paging_id])
PagingsMailer.paging(medic, message).deliver
end
def paging(medic, message)
@medic = medic
@message = message
mail to: @medic.medic_email, subject: "OH MY GOD"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment