I'm trying to place a simple contact form on my site. In the application file, I have,
post '/contact' do
name = params[:name]
mail = params[:mail]
inquirykind = params [:inquirykind]
body = params[:body]
Mail.defaults.do
delivery_method :smtp, { :address => "smtp.gmail.com",
:port => 587,
:user_name => "user@example.com",
:password => "password",
:authentication => 'plain',
:enable_starttls_auto => true }
end
mail = Mail.new do
from '#{mail}'
to 'user@example.com'
subject '#{inquirykind} from #{name}'
body '#{body}'
end
redirect '/thanks'
mail.deliver!
end
I try to run the app and promptly get the error,
app.rb:47: syntax error, unexpected keyword_end, expecting $end
I've muddled up this simple form somehow, and don't know enough Ruby to fix it.
Thanks in advance!
Mail.defaults.doshould beMail.defaults do– mu is too short Dec 9 '11 at 20:07