python
1from email import message 2import smtplib 3 4import config 5 6smtp_host = 'smtp.live.com' 7smtp_port = 587 8from_email = 'xxxx@hotmail.com' 9from_email = config.from_email 10to_email = 'xxxx@hotmail.com' 11to_email = config.to_email 12username = 'xxxx@hotmail.com' 13username = config.user_name 14password = 'asjdnfkjnsfdasd' 15password = config.password 16 17msg = message.EmailMessage() 18msg.set_content('Test email') 19msg['Subject'] = 'Test email sub' 20msg['Form'] = from_email 21msg['To'] = to_email 22 23server = smtplib.SMTP(smtp_host, smtp_port) 24server.ehlo() 25server.starttls() 26server.ehlo() 27server.login(username, password) 28server.send_message(msg) 29server,quit()
udemyのコースで、上のようにコードを書いていて、configにfrom_email,to_email,username,passwordを書いていると言っていたのですが、どのディレクトリに、どのように書けばよいのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。