email fix typo
This commit is contained in:
parent
abae676f57
commit
1a1494a34e
|
|
@ -29,3 +29,5 @@
|
|||
|
||||
# Ignore master key for decrypting credentials and more.
|
||||
/config/master.key
|
||||
|
||||
/dox/~$*
|
||||
|
|
|
|||
|
|
@ -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 -->
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -49,6 +49,22 @@ 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
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Reference in New Issue