Sha256: d383e670b452cc46a1af1a1f82be821c3d7314a5f6ae6b092b84a4a850788f67

Contents?: true

Size: 755 Bytes

Versions: 2

Compression:

Stored size: 755 Bytes

Contents

Mailboxer.setup do |config|

  #Configures if you applications uses or no the email sending for Notifications and Messages
  config.uses_emails = true

  #Configures the default from for the email sent for Messages and Notifications of Mailboxer
  config.default_from = "no-reply@mailboxer.com"

  #Configures the methods needed by mailboxer
  config.email_method = :mailboxer_email
  config.name_method = :name
  config.notify_method = :notify

  #Configures if you use or not a search engine and wich one are you using
  #Supported enignes: [:solr,:sphinx]
  config.search_enabled = false
  config.search_engine = :solr

  #Configures maximum length of the message subject and body
  config.subject_max_length = 255
  config.body_max_length = 32000
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mailboxer-0.15.1 spec/dummy/config/initializers/mailboxer.rb
mailboxer-0.15.0 spec/dummy/config/initializers/mailboxer.rb