SMTP Credentials

11.SMTP Credentials : its use for get password by mailer app/config/ envernments/development.rb
development.rb

config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtp.gmail.com',
port: 587,
domain: 'localhost',
user_name: 'testing.bittern@gmail.com',
password: 'bittern1234',
authentication: 'plain',
enable_starttls_auto: true }

Comments

Popular posts from this blog

User Login And Logout Show Notice Box Massage

Add CORS to Nginx on AWS Elastic Beanstalk