class Moogle::EmailTarget
Public Instance Methods
validate_options()
click to toggle source
# File lib/moogle/models/email_target.rb, line 9 def validate_options return false, 'options "to" is blank' if options['to'].blank? return false, 'options "from" is blank' if options['from'].blank? true end