search for: deliver_xxx

Displaying 3 results from an estimated 3 matches for "deliver_xxx".

2006 May 23
2
ActionMailer stopped working after upgrade to Rails 1.1
Hello, I am using implicit e-mail templates to send HTML messages. I had no problems till I have upgraded to Rails 1.1. Now the deliver_xxx method just fails without *any* error message. No error or whatsoever (both in development and production environments) exist in logs. Stranger than that, a blank page is being displayed (according to logs, 0 length response, with 200 OK code). I googled for hours without any success. What am I doi...
2010 Mar 27
1
ar_mailer, class Email : add field to the table?
...are save in the AR model Email. I have an AR model Sent where i save the email that the user sent. I would like to add to the model Email a column to save the id of the corresponding Sent. Is it possible ? I can add the column sent_id in the table emails but how can i fill it ? I just use a method deliver_XXX to put the email in the queue, where can i write the instruction to fill the field sent_id ?? Thanks for your help :) adrien -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-...
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?