2
Pythonを使って "To"と "From"フィールドの電子メールアドレスを変更したいと思います。これまでのところ、私は必要なフィールドを読むために働いています。いずれにせよ、どのようにそれらを変更することを提案してください。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