class Morpho::Configurations::Mailer
Attributes
address[RW]
authentication[RW]
delivery_method[RW]
enable_starttls_auto[RW]
from[RW]
password[RW]
perform_deliveries[RW]
port[RW]
user_name[RW]
Public Class Methods
new()
click to toggle source
# File lib/morpho/configurations/mailer.rb, line 14 def initialize self.perform_deliveries = false self.delivery_method = :test self.from = '' self.address = '' self.user_name = '' self.password = '' self.port = '' self.authentication = '' self.enable_starttls_auto = '' end