Witajcie.
Mam mały problem z mailerem.
Stworzyłem go przez script/generate mailer Notifier
[code]##notifier.rb
def contact_form(email_params)
recipients "moj-mail@gmail.com"
from “example@example.pl”
subject “Tytul”
body :data=>email_params
end
##contacts_controller
def index
end
def new
Notifier.deliver_contact_form(params[:contact])
end
##environment/development.rb
config.action_mailer.raise_delivery_errors = true
config.action_mailer.smtp_settings = {
:address => ‘stallman.rootnode.net’,
:port => 465,
:domain => ‘www.rootnode.net’,
:authentication => :login,
:user_name => ‘login’,
:password => ‘haslo’
}[/code]
Gdy wysyłam maila, otrzymuję
Timeout::Error in ContactsController#new
execution expired
Tutaj trace…
Za wszelką pomoc będę wdzięczny