mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
10 lines
311 B
Ruby
10 lines
311 B
Ruby
ActionMailer::Base.smtp_settings = {
|
|
:address => "smtp.gmail.com",
|
|
:port => 587,
|
|
:domain => "gmail.com",
|
|
:user_name => "velocipede",
|
|
:password => "password",
|
|
:authentication => "plain",
|
|
:enable_starttls_auto => true
|
|
}
|