Sha256: a09e2769e9fc041c7d17f39a6699a934fc2c2386e87187a85c868ba0b40e7e52
Contents?: true
Size: 914 Bytes
Versions: 13
Compression:
Stored size: 914 Bytes
Contents
Maily.setup do |config| # On/off engine # config.enabled = Rails.env.production? ? false : true # Allow templates edition # config.allow_edition = Rails.env.production? ? false : true # Allow deliveries # config.allow_delivery = Rails.env.production? ? false : true # Your application available_locales (or I18n.available_locales) by default # config.available_locales = [:en, :es, :pt, :fr] # Run maily under different controller ('ActionController::Base' by default) # config.base_controller = '::AdminController' # Configure hooks path # config.hooks_path = 'lib/maily_hooks.rb' # Http basic authentication (nil by default) # config.http_authorization = { username: 'admin', password: 'secret' } # Customize welcome message # config.welcome_message = "Welcome to our email testing platform. If you have any problem, please contact support team at support@example.com." end
Version data entries
13 entries across 13 versions & 1 rubygems