FeedbackSignature = Struct.new(:petition) do - FeedbackSignature has no descriptive comment
def name
'Petitions team'
end
def email
rfc2822.address
end
def unsubscribe_token
'ThisIsNotAToken'
end
def to_param
'0'
end
private
def rfc2822 - FeedbackSignature#rfc2822 has the name 'rfc2822'
@rfc2822 ||= Mail::Address.new(Site.feedback_email)
end
end