2
"받는 사람"및 "보낸 사람"필드의 전자 메일 주소를 Python을 사용하여 변경하고 싶습니다. 지금까지 필자는 필수 필드를 읽는 중 일하고있다. 어느 누구도 제안하십시오, 그들에게 변화를 일으키는 방법.Python : eml 파일의 값 수정 (전자 메일 헤더)
from email.parser import Parser
fp = open('2.eml', 'r+')
headers = Parser().parse(fp)
# Make changes only within a code, Not in to the file. I would like to save given changes for from in to my 2.eml file
headers.replace_header('from', '[email protected]')
print ('To: %s' % headers['to'])
print ('From: %s' % headers['from'])
print ('Subject: %s' % headers['subject'])
고마워요! 그것은 작동합니다. – jaymin581