サービス
サービスを探す
プロ人材を探す
仕事を探す
ブログを探す
〇 メール解析がシンプルに記述できる
× 文字化けすることがある
import mailparser
mail = mailparser.parse_from_bytes(raw_email)
email_str = raw_email.decode('utf-8', errors='ignore')
mail = mailparser.parse_from_string(email_str)
mail.subject
mail.text_plain
mail.text_html
mail.from_
mail.to
mail.cc
mail.bcc
if mail.text_plain:
if mail.text_html:
pip install mail-parser