Code0
Advanced Member
- Joined
- December 25, 2025
- Messages
- 237
- Reaction score
- 293
- Points
- 43
- Thread Author
- #1
Code:
Code:
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
# Email content
message = MIMEMultipart()
message['From'] = 'sender@example.com'
message['Subject'] = 'Important message'
body = 'This is the content of the email.'
message.attach(MIMEText(body, 'plain'))
# Login credentials
username = 'your_email_username'
# List of email addresses to send the email to
emails = ['recipient1@example.com', 'recipient2@example.com', 'recipient3@example.com']
# SMTP server settings
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.
# Loop to send emails
for email in emails:
message['To'] = email
server.sendmail(username, email, message.as_string())
# Quit the server
server.quit()
EDUCATIONAL PURPOSES ONLY