12 lines
355 B
Python
12 lines
355 B
Python
import smtplib
|
|
from email.mime.text import MIMEText
|
|
|
|
msg = MIMEText("Hello from your Rasberry Pi!")
|
|
msg['Subject'] = 'RPi Alert'
|
|
msg['From'] = 'ghaldrup00@gmail.com'
|
|
msg['To'] = 'garrett@haldrup.tech'
|
|
|
|
with smtplib.SMTP_SSL('smtp.gmail.com', 465) as server:
|
|
server.login('ghaldrup00@gmail.com', 'xxxxxxxxxxxxxxxxxxx')
|
|
server.send_message(msg)
|