class FDE::MailSender::Config
Attributes
address[RW]
authentication[RW]
domain[RW]
enable_starttls_auto[RW]
from[RW]
password[RW]
port[RW]
user_name[RW]
Public Instance Methods
attributes()
click to toggle source
# File lib/fde/mail_sender.rb, line 17 def attributes { address: @address, port: @port, domain: @domain, user_name: @user_name, password: @password, authentication: @authentication, enable_starttls_auto: @enable_starttls_auto } end