Hi,
I tried using parseaddr of email.utils, but it gave the following
result when the name had a comma inside.
('', 'K')
Thanks and Regards,
Roopesh
I tried using parseaddr of email.utils, but it gave the following
result when the name had a comma inside.
>>e = 'K,Vishal <vishal@someadd ress.biz>'
>>from email.utils import parseaddr
>>parseaddr(e )
>>from email.utils import parseaddr
>>parseaddr(e )
Thanks and Regards,
Roopesh
Comment