Search code examples
pythonemailrfc822email-parsing

Is there a non-deprecated equivalent of rfc822.AddressList?


I need something like rfc822.AddressList to parse, say, the content of the "TO" header field of an email into individual addresses. Since rfc822 is deprecated in favor of the email package, I looked for something similar there but couldn't find anything. Does anyone know what I'm supposed to use instead?

Thanks!


Solution

  • Oh it's email.utils.getaddresses. Just make sure to call it with a list.