import poplib
M = poplib.POP3_SSL('pop3.live.com', 995) #Connect to hotmail pop3 server
try:
M.user(raw_input("username: ")) #Get the username from the standar input
M.pass_(raw_input("password: ")) #Get the password from the standar input
except:
print "username or password incorrect"
else:
print "Successful login"
import smtplib
msg = "warning"
msg['From'] = "[email protected]"
msg['To'] = "[email protected]"
msg['Subject'] = "hello"
s = smtplib.SMTP("smtp.live.com",25)
s.sendmail("[email protected]", "[email protected]", msg.as_string())
s.quit()
私はpymailを使ってhotmailにログインする方法を見つけました。pythonを使ってhotmailでメールを書くには?
しかし、私はまだhotmailでメールを送信することに問題があります。
TypeError: 'str' object does not support item assignment This keep coming up. I have no idea why.
誰も次のコードを書く方法を知っていますか? Plzヘルプ。私はそれを感謝します。
ちょうどあなたがソフトウェアの種類を作業していますか? – pajton