class DeliveryMethods::<%= class_name %> < Noticed::DeliveryMethods::Base

def deliver
  # Logic for sending the notification
end

# You may override this method to validate options for the delivery method
# Invalid options should raise a ValidationError
#
# def self.validate!(options)
#   raise ValidationError, "required_option missing" unless options[:required_option]
# end

end