Created
December 31, 2013 16:21
-
-
Save johnantoni/8199088 to your computer and use it in GitHub Desktop.
raspberry pi - send email on startup (will need gmail account to send from)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import smtplib | |
import socket | |
from email.mime.text import MIMEText | |
import datetime | |
# Change to your own account information | |
to = '[email protected]' | |
gmail_user = '[email protected]' | |
gmail_password = 'yourpassword' | |
smtpserver = smtplib.SMTP('smtp.gmail.com', 587) | |
smtpserver.ehlo() | |
smtpserver.starttls() | |
smtpserver.ehlo | |
smtpserver.login(gmail_user, gmail_password) | |
today = datetime.date.today() | |
# Very Linux Specific | |
arg='ip route list' | |
p=subprocess.Popen(arg,shell=True,stdout=subprocess.PIPE) | |
data = p.communicate() | |
split_data = data[0].split() | |
ipaddr = split_data[split_data.index('src')+1] | |
my_ip = 'Your ip is %s' % ipaddr | |
msg = MIMEText(my_ip) | |
msg['Subject'] = 'IP For RaspberryPi on %s' % today.strftime('%b %d %Y') | |
msg['From'] = gmail_user | |
msg['To'] = to | |
smtpserver.sendmail(gmail_user, [to], msg.as_string()) | |
smtpserver.quit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The 'src' is not in list is caused by python3. Try python2 instead.