Create a key to copy examples filled with your team.
Send emails with Rails
Use Action Mailer over PostShiba SMTP.
Point Action Mailer at PostShiba SMTP. Use port 587, STARTTLS, and authentication: :plain. AUTH LOGIN fails.
production.rb
1
config.action_mailer.delivery_method = :smtp
2
config.action_mailer.smtp_settings = {
3
address: "smtp.postshiba.com",
4
port: 587,
5
enable_starttls: true,
6
authentication: :plain,
7
user_name: "smtp_9",
8
password: "YOUR_PASSWORD"
9
}