Python 스크립트를 사용하여 Linux에서 이메일을 보내고 받는 방법
Linux 시스템에서는 Python 스크립트를 사용하여 이메일을 보내고 받을 수 있습니다. Python의 smtplib 및 imaplib 모듈은 해당 기능을 제공합니다.
1. 이메일 보내기
이메일 보내기 기능을 구현하려면 먼저 보내는 사람의 이메일 주소와 SMTP 서버 관련 정보를 준비해야 합니다. 다음은 간단한 샘플 코드입니다.
import smtplib from email.mime.text import MIMEText def send_email(): # 发送方的邮箱地址和授权码 sender_email = "your_email@gmail.com" sender_password = "your_password" # 接收方的邮箱地址 receiver_email = "recipient_email@gmail.com" # 邮件主题和内容 subject = "Hello from Python Script" body = "This is a test email sent from a Python script." # 创建邮件对象 message = MIMEText(body, "plain") message["Subject"] = subject message["From"] = sender_email message["To"] = receiver_email # 发送邮件 try: server = smtplib.SMTP("smtp.gmail.com", 587) server.starttls() server.login(sender_email, sender_password) server.sendmail(sender_email, receiver_email, message.as_string()) print("Email sent successfully") except Exception as e: print("Failed to send email. Error:", str(e)) finally: server.quit() send_email()
위 코드에서는 Gmail의 SMTP 서버를 사용하여 이메일을 보냈습니다. 필요에 따라 다른 SMTP 서버로 교체할 수 있으며, 해당 포트 번호 변경에 주의하세요.
2. 이메일 수신
이메일 수신 기능을 구현하려면 수신자의 이메일 주소, IMAP 서버 정보, 로그인 정보를 준비해야 합니다. 다음은 간단한 샘플 코드입니다.
import imaplib def receive_email(): # 接收方的邮箱地址和授权码 email_address = "recipient_email@gmail.com" email_password = "your_password" try: # 连接到IMAP服务器 mailbox = imaplib.IMAP4_SSL("imap.gmail.com") mailbox.login(email_address, email_password) # 选择邮箱 mailbox.select("INBOX") # 搜索并获取最新的邮件 result, data = mailbox.search(None, "ALL") latest_email_id = data[0].split()[-1] result, data = mailbox.fetch(latest_email_id, "(RFC822)") # 解析邮件内容 email_text = data[0][1].decode("utf-8") print("Received email: ", email_text) except Exception as e: print("Failed to receive email. Error:", str(e)) finally: mailbox.close() mailbox.logout() receive_email()
위 코드에서는 Gmail의 IMAP 서버를 사용하여 이메일을 수신합니다. 필요에 따라 다른 IMAP 서버로 교체할 수도 있습니다.
위는 Linux에서 이메일을 보내고 받기 위해 Python 스크립트를 사용하는 기본 단계와 코드 예제입니다. 이러한 코드를 통해 Linux 시스템에서 이메일을 유연하게 보내고 받을 수 있습니다. 도움이 되었기를 바랍니다!
위 내용은 Python 스크립트를 사용하여 Linux에서 이메일을 보내고 받는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!