search for: item_assign

Displaying 1 result from an estimated 1 matches for "item_assign".

2006 Jan 30
5
Action Mailer woes
...se.server_settings = { :address => "pop3.nsw.exemail.com.au", :port => 25, :authentication => :login, :user_name => "somebody@somewhere.com.au", :password => "wouldntyouliketoknow" } I have a Mailer model; class ItemMailer < ActionMailer::Base def item_assignment( address, title, body ) # Email header info MUST be added here @recipients = address @from = "accounts@mywebsite.com" @subject = title @body = body # breakpoint ''mailer'' # Email body substitutions go here end end In the controller I have; .....