Sha256: e8bfb71a2ed229d7b6e9708f75c2fc1034413de98e6cc7e9e4d933897f256019
Contents?: true
Size: 748 Bytes
Versions: 36
Compression:
Stored size: 748 Bytes
Contents
Mailboxer.setup do |config| #Configures if your application uses or not email sending for Notifications and Messages config.uses_emails = true #Configures the default from for emails sent for Messages and Notifications 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 which one you are using #Supported engines: [:solr,:sphinx,:pg_search] 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
36 entries across 36 versions & 3 rubygems