email fix typo
This commit is contained in:
parent
abae676f57
commit
1a1494a34e
|
|
@ -29,3 +29,5 @@
|
||||||
|
|
||||||
# Ignore master key for decrypting credentials and more.
|
# Ignore master key for decrypting credentials and more.
|
||||||
/config/master.key
|
/config/master.key
|
||||||
|
|
||||||
|
/dox/~$*
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
<!-- Page Heading -->
|
<!-- Page Heading -->
|
||||||
<h1 class="h3 mb-4 text-gray-800">Home#index</h1>
|
<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>
|
</div>
|
||||||
<!-- /.container-fluid -->
|
<!-- /.container-fluid -->
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ Rails.application.configure do
|
||||||
config.action_mailer.perform_deliveries = true
|
config.action_mailer.perform_deliveries = true
|
||||||
config.action_mailer.raise_delivery_errors = true
|
config.action_mailer.raise_delivery_errors = true
|
||||||
config.action_mailer.default_options =
|
config.action_mailer.default_options =
|
||||||
{ from: 'akademiatechnologii@gmail.com' }
|
{ from: 'akadeniatechnologii@gmail.com' }
|
||||||
|
|
||||||
|
|
||||||
# Print deprecation notices to the Rails logger.
|
# Print deprecation notices to the Rails logger.
|
||||||
|
|
|
||||||
|
|
@ -49,12 +49,28 @@ Rails.application.configure do
|
||||||
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
||||||
# config.force_ssl = true
|
# 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
|
# Use the lowest log level to ensure availability of diagnostic information
|
||||||
# when problems arise.
|
# when problems arise.
|
||||||
config.log_level = :debug
|
config.log_level = :debug
|
||||||
|
|
||||||
# Prepend all log lines with the following tags.
|
# 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.
|
# Use a different cache store in production.
|
||||||
# config.cache_store = :mem_cache_store
|
# config.cache_store = :mem_cache_store
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Reference in New Issue