utils¶
- pythonic_gmail.utils.extract_email_name(text: str) str[source]¶
Extract the name part from an email string.
Example: “John Doe <john.doe@email.com>” -> “John Doe”
- pythonic_gmail.utils.extract_email_address(text: str) str[source]¶
Extract the email address part from an email string.
Example: “John Doe <john.doe@email.com>” -> “john.doe@email.com”