Search
 
SCRIPT & CODE EXAMPLE
 

RUBY

sendgrid ruby on rails

ActionMailer::Base.smtp_settings = {
  :user_name => 'your_sendgrid_username',
  :password => 'your_sendgrid_password',
  :domain => 'yourdomain.com',
  :address => 'smtp.sendgrid.net',
  :port => 465,
  :authentication => :plain,
  :enable_starttls_auto => true
}
Comment

rails sendgrid setup

ActionMailer::Base.smtp_settings = {
  :user_name => 'apikey', # This is the string literal 'apikey', NOT the ID of your API key
  :password => '<SENDGRID_API_KEY>', # This is the secret sendgrid API key which was issued during API key creation
  :domain => 'yourdomain.com',
  :address => 'smtp.sendgrid.net',
  :port => 587,
  :authentication => :plain,
  :enable_starttls_auto => true
}
Comment

PREVIOUS NEXT
Code Example
Ruby :: ruby array of strings 
Ruby :: rails add column next to 
Ruby :: ruby method tap 
Ruby :: rails form validation custom message 
Ruby :: install ruby on rails ubuntu 18.04 
Ruby :: ruby language 
Ruby :: gem file permission error for ubuntu rails 
Ruby :: for loop with condition in ruby 
Ruby :: chop! ruby 
Ruby :: In Jekyll - get the parent url path of a collection with concatenation 
Ruby :: Hash.new constructor 
Ruby :: pick element from array that is part of params hash 
Ruby :: add several columns rails 
Ruby :: Create Rails Projetc 
Ruby :: rails .map unless nil 
Ruby :: encryption and decryption in rails 
Ruby :: rails active record to fetch only list of ids 
Ruby :: rspec change matcher 
Ruby :: hello world ruby 
R :: random integer in r 
R :: how to append in R list 
R :: rnorm r 
R :: descending order a list in r 
R :: remove rows in r based on row number using dplyr 
R :: r: rename a column 
R :: convert na to 0 in r 
R :: plot porportion bar chart in r 
R :: r rep() 
R :: R Basic Syntax 
R :: absolute value in r 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =