Method: MailHandler::Sending::SMTPSender#initialize

Defined in:
lib/mailhandler/sending/smtp.rb

#initializeSMTPSender

Returns a new instance of SMTPSender.



20
21
22
23
24
25
26
27
28
# File 'lib/mailhandler/sending/smtp.rb', line 20

def initialize
  @type = :smtp
  @authentication = 'plain'
  @use_ssl = false
  @save_response = false

  @open_timeout = 60
  @read_timeout = 60
end