class Voltron::Config::Notify
Attributes
default_mailer[RW]
Email config settings
default_method[RW]
Email config settings
default_template[RW]
Email config settings
email_from[RW]
Email config settings
sms_account_sid[RW]
SMS config settings
sms_auth_token[RW]
SMS config settings
sms_from[RW]
SMS config settings
use_queue[RW]
Public Class Methods
new()
click to toggle source
# File lib/voltron/config/notify.rb, line 18 def initialize @use_queue ||= false @email_from ||= 'no-reply@example.com' @default_mailer = Voltron::NotificationMailer @default_method = :notify @default_template = 'voltron/notification_mailer/notify.html.erb' end