この例をコピーして貼り付け、自分のメール アドレスを入力しました。
# Import smtplib for the actual sending function
import smtplib
# Import the email modules we'll need
from email.mime.text import MIMEText
# Open a plain text file for reading. For this example, assume that
# the text file contains only ASCII characters.
fp = open('/Users/Jon/dev/iit/test-tools/logs/practice_tests.test_one.log', 'rb')
# Create a text/plain message
msg = MIMEText(fp.read())
fp.close()
me = 'Jon@MacBookPro.com'
you = 'jon.drowell@yahoo.com'
# me == the sender's email address
# you == the recipient's email address
msg['Subject'] = 'The contents of the log file'
msg['From'] = me
msg['To'] = you
# Send the message via our own SMTP server, but don't include the
# envelope header.
s = smtplib.SMTP('localhost', 1025)
s.sendmail(me, [you], msg.as_string())
s.quit()
次に、別のターミナル ウィンドウを開き、次のコマンドを実行しました。
python -m smtpd -n -c DebuggingServer localhost:1025
ファイルを実行して電子メールを送信すると、エラーなしで終了し、python -m smtpd -n -c DebuggingServer localhost:1025
コマンドを実行している端末は、正しいように見える素敵なログ メッセージを出力します。
---------- MESSAGE FOLLOWS ----------
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Subject: The contents of the log file
From: Jon@MacBookPro.com
To: jon.crowell@yahoo.com
X-Peer: 127.0.0.1
line one
line two
line three
------------ END MESSAGE ------------
しかし、yahooのメールアドレスを確認してもメールが届きません。5分ほど待ちましたが、十分だと思います。私は何を間違えましたか?