英語以外(中国語、日本語など)でメールを送信する必要があります。件名と本文を取得する template.py ファイルがあります。template.py
#!/us/bin/python
# -*- coding: utf-8 -*-
subject = '附录E: 配置参考'
body = '附录E: 配置参考'
template.py ファイルから本文と件名を読み取ります。
msg = EmailMultiAlternatives(subject, body, from, to)
msg.attach_alternative(html_content, "text/html")
msg.send()
英語ではうまくいきますが、他の言語ではうまくいきません。どうすれば修正できますか?