Displaying 1 result from an estimated 1 matches for "deliver_mailing_label_messag".
Did you mean:
deliver_mailing_label_message
2006 Feb 19
2
Missing text/html content in production (but not development)
...t''s going
wrong. Can anyone suggest anything?
Here''s the mail-generation method that''s being invoked (from another,
public method) in my controller:
private
def generate_mailing_label_email
label = create_mailing_label(@order)
OrderMailer::deliver_mailing_label_message(@order, @person, label)
end
And here is the method that''s defined in OrderMailer < ActionMailer::Base:
def mailing_label_message(order, person, label)
@recipients = person.email_address
@subject = "Mailing label for MySite order ##{order.id}"...