他の人に電子メールを送信することは重要なことです。開発中は、OTP、PIN、認証などのコードを送信するために使用できます。
最近、OTP コードを求めてユーザーに電子メールを送信できるようにする必要があるプロジェクトを受注しましたが、それは非常に簡単であることがわかりました。
import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText # creates SMTP session s = smtplib.SMTP('smtp.gmail.com', 587) # start TLS for security s.starttls() # Authentication s.login("your_email@gmail.com", "yyaz pgow khtd xeqn") # Create a multipart message msg = MIMEMultipart() msg['From'] = "your_email@gmail.com" msg['To'] = "send_to_email@gmail.com" msg['Subject'] = "Subject of the Email" message = "How are you mate? This is a test email sent using Python" # Attach the message body msg.attach(MIMEText(message, 'plain')) # Send the email s.send_message(msg) # terminating the session s.quit()
何か問題があれば、お気軽に質問してください:)
ソース:
以上がPython SMPT と Gmail を使用して電子メールを送信するのは簡単です。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。