__contains__(name)
Return true if the message object has a field named name. Matching is done case-insensitively and name should not include the trailing colon. Used for the in
operator, e.g.:
if 'message-id' in myMessage: print('Message-ID:', myMessage['message-id'])
Please login to continue.