Displaying 2 results from an estimated 2 matches for "admin_mail".
Did you mean:
admin_email
2013 Jan 07
0
update the table, using best_in_place
I have a table of workers: there are parameters of: `admin_mail`, `task`
and `done`.
in my `index.html.erb`, you can see the table is divided by two
conditions:
the first one is called `TODO TASKS'' that contains all the tasks that
`done = false''.
and the second one is called `DONE TASKS` that contains all the tasks
that `done = true'...
2008 Jun 04
8
Accessing Params Hash form Action Mailer Model
I have used Action Mailer to collect data from a form and send it to a
recipient. Rather than hard-code things like the subject, recipients,
and return address into the model, I would like to include that
information in hidden fields in my form thereby causing that
information to be included in the params hash. My question is: How
can I access that information from the params hash in the model?