1 - Create a new file in the config/initializers/action_mailer.rb (The file can be called anything)
2 - Place the following settings in it:
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.default_charset = "utf-8"
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.smtp_settings = {
:address => "your.smtp.server",
:port => 25,
:domain => "your.domain",
:user_name => "username",
:password => "password"
}
You should be able to send SMTP mail. Go and read the above doc about using ActionMailer to create the email and send it.
No comments:
Post a Comment