class MediaWiktory::Wikipedia::Actions::Bouncehandler
Receive a bounce email and process it to handle the failing recipient.
Usage:
“`ruby api.bouncehandler.email(value).perform # returns string with raw output # or api.bouncehandler.email(value).response # returns output parsed and wrapped into Response
object “`
See {Base} for generic explanation of working with MediaWiki actions and {MediaWiktory::Wikipedia::Response} for working with action responses.
All action's parameters are documented as its public methods, see below.
Public Instance Methods
email(value)
click to toggle source
The bounced email.
@param value [String] @return [self]
# File lib/mediawiktory/wikipedia/actions/bouncehandler.rb, line 26 def email(value) merge(email: value.to_s) end