pythonから複数のメールアドレスにメールを送信しようとしましたが、.txtファイルからインポートしましたが、differend構文を試しましたが、何も動作しませんでした...複数の受信者に電子メールをPython smtplibで.txtファイルから送信
コード:
urlFile = open("mailList.txt", "r+")
mailList = urlFile.read()
s.sendmail('[email protected]', mailList, msg.as_string())
mainList.txtが含まれています:
s.sendmail('[email protected]', ['[email protected]', '[email protected]', '[email protected]'], msg.as_string())
は、だから私は.txtファイルから受信者のアドレスをインポートするために、これを試してみました
['[email protected]', '[email protected]', '[email protected]']
しかし、それは動作しません...
私もやってみました:
... [mailList] ... in the code, and '...','...','...' in the .txt file, but also no effect
と
... [mailList] ... in the code, and ...','...','... in the .txt file, but also no effect...
は、誰もが何をすべきか知っていますか?
ありがとうございます!
はありがとうございます。これは私のために働いた。 – aku