Mailer and other upgrades

This commit is contained in:
2013-01-17 09:15:42 +01:00
parent 26810defcd
commit 730768cb59
36 changed files with 242 additions and 8 deletions
+15
View File
@@ -22,6 +22,21 @@ Qwaiter::Application.configure do
# Don't care if the mailer can't send
config.action_mailer.raise_delivery_errors = false
#config.action_mailer.delivery_method = :letter_opener
config.action_mailer.default_url_options = {
host: 'localhost',
port: 3000
}
config.action_mailer.smtp_settings = {
address: "smtp.gmail.com",
port: 587,
domain: "atool.nl",
authentication: :plain,
user_name: "bterkuile@companytools.nl",
password: "BjTKct22",
enable_starttls_auto: true
}
# Print deprecation notices to the Rails logger
config.active_support.deprecation = :log