ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
27 lines
848 B
Python
27 lines
848 B
Python
# Import smtplib for the actual sending function.
|
|
import smtplib
|
|
|
|
# Here are the email package modules we'll need.
|
|
from email.message import EmailMessage
|
|
|
|
# Create the container email message.
|
|
msg = EmailMessage()
|
|
msg['Subject'] = 'Our family reunion'
|
|
# me == the sender's email address
|
|
# family = the list of all recipients' email addresses
|
|
msg['From'] = me
|
|
msg['To'] = ', '.join(family)
|
|
msg.preamble = 'You will not see this in a MIME-aware mail reader.\n'
|
|
|
|
# Open the files in binary mode. You can also omit the subtype
|
|
# if you want MIMEImage to guess it.
|
|
for file in pngfiles:
|
|
with open(file, 'rb') as fp:
|
|
img_data = fp.read()
|
|
msg.add_attachment(img_data, maintype='image',
|
|
subtype='png')
|
|
|
|
# Send the email via our own SMTP server.
|
|
with smtplib.SMTP('localhost') as s:
|
|
s.send_message(msg)
|