I want to filter multiple emails in the 'sent_from' parameter of messages, but it only works when the parameter is a single email address. I tried giving it a list or tuple, but it doesn't work.
for example:
it works:
all_inbox_messages = imbox.messages(sent_from='xxx@xxx.com')
it doesn't work:
all_inbox_messages = imbox.messages(sent_from=['xxx@xxx.com','yyy@yy.com'])