email fix typo

This commit is contained in:
Adrian Hinz 2019-05-10 12:04:08 +02:00
parent abae676f57
commit 1a1494a34e
5 changed files with 26 additions and 2 deletions

2
.gitignore vendored
View File

@ -29,3 +29,5 @@
# Ignore master key for decrypting credentials and more.
/config/master.key
/dox/~$*

View File

@ -2,6 +2,12 @@
<!-- Page Heading -->
<h1 class="h3 mb-4 text-gray-800">Home#index</h1>
<h3>
Responsive 16:9 Vimeo
</h3>
<div class="embed-responsive embed-responsive-16by9">
<iframe src="//player.vimeo.com/video/22428395"></iframe>
</div>
</div>
<!-- /.container-fluid -->

View File

@ -45,7 +45,7 @@ Rails.application.configure do
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
config.action_mailer.default_options =
{ from: 'akademiatechnologii@gmail.com' }
{ from: 'akadeniatechnologii@gmail.com' }
# Print deprecation notices to the Rails logger.

View File

@ -49,12 +49,28 @@ Rails.application.configure do
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# config.force_ssl = true
config.action_mailer.perform_caching = false
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtp.gmail.com',
port: 587,
domain: 'akademiatechnologii.pl',
user_name: 'akademiatechnologii.pl@gmail.com',
password: '12345%$#@!Adi',
authentication: 'plain',
enable_starttls_auto: true
}
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
config.action_mailer.default_options =
{ from: 'akademiatechnologii.pl@gmail.com' }
# Use the lowest log level to ensure availability of diagnostic information
# when problems arise.
config.log_level = :debug
# Prepend all log lines with the following tags.
config.log_tags = [ :request_id ]
config.log_tags = [:request_id]
# Use a different cache store in production.
# config.cache_store = :mem_cache_store

Binary file not shown.