· 10 years ago · Apr 11, 2016, 02:18 PM
1EOFError: end of file reached
2
3ActionMailer::Base.default :from => 'slfwalsh@gmail.com'
4
5 config.action_mailer.delivery_method = :smtp
6 config.action_mailer.perform_deliveries = true
7 config.action_mailer.raise_delivery_errors = true
8 config.action_mailer.smtp_settings = {
9 :address => "smtp.gmail.com",
10 :port => 587,
11 :domain => '@gmail.com',
12 :user_name => "xxxxx@gmail.com",
13 :password => "xxxxxxxx",
14 :authentication => 'plain',
15 :enable_starttls_auto => true
16 }
17
18 config.action_mailer.default_url_options = { :host => 'localhost:3000' }