Sha256: 7f8cfbdba6bfe77b5f6dbf7a89c83fe86c560a54b820e88d87105590a845d6c0
Contents?: true
Size: 1.16 KB
Versions: 22
Compression:
Stored size: 1.16 KB
Contents
# encoding: utf-8 module Backup module Configuration module Notifier class Mail < Base class << self ## # Sender and Receiver email addresses # Examples: # sender - my.email.address@gmail.com # receiver - your.email.address@gmail.com attr_accessor :from, :to ## # The address to use # Example: smtp.gmail.com attr_accessor :address ## # The port to connect to # Example: 587 attr_accessor :port ## # Your domain (if applicable) # Example: mydomain.com attr_accessor :domain ## # Username and Password (sender email's credentials) # Examples: # user_name - meskyanichi # password - my_secret_password attr_accessor :user_name, :password ## # Authentication type # Example: plain attr_accessor :authentication ## # Automatically set TLS # Example: true attr_accessor :enable_starttls_auto end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems