README

Path: README
Last Update: Wed Mar 14 12:02:56 CDT 2007

YAML Mail Config

YAML Mail Config moves ActionMailer configuration to a YAML file in your config/ folder, just like your database definitions.

To use, install the plugin, then create a config/email.yml file that follows the sample pattern below, but populate with your actual SMTP settings.

Sample:

  development:
    server: mail.domain.com
    port: 25
    domain: domain.com
    authentication: login
    username: email_account_login
    password: email_account_password
  production:
    server: mail.domain.com
    port: 25
    domain: domain.com
    authentication: login
    username: email_account_login
    password: email_account_password

Thanks to Sébastien Grosjean (seb.box.re/) for the idea and the initial codebase for this plugin!

[Validate]