【環境】
Python3 Macbook pro jupyternotebook , cron terminal
from email.mime.multipart import MIMEMultipart from email.mime.base import MIMEBase from email import encoders import smtplib import ssl from email.mime.text import MIMEText Subject='テスト' body='テストです。' gmail_account='xxx@gmail.com' gmail_password='xxx' mail_to='xxx@gmail.com' send_name='xxx' msg=MIMEMultipart() msg['Subject']=Subject msg['To']=mail_to msg['From']= gmail_account body=MIMEText(body,'html') msg.attach(body) filename='screenshot3.png' file=open(filename,'rb') attachment_file=MIMEBase('application','pdf') attachment_file.set_payload((file).read()) file.close() encoders.encode_base64(attachment_file) attachment_file.add_header('Content-Disposition','attachment',filename=filename) msg.attach(attachment_file) server=smtplib.SMTP_SSL('smtp.gmail.com',465, context=ssl.create_default_context()) server.login(gmail_account, gmail_password) server.send_message(msg) print('送信完了')
【Crontab termial】
PATH=Terminal上でのecho pathを記載
*/1 * * * * /Library/Frameworks/Python.framework/Versions/3.8/bin/python3 //Users/name/Desktop/python_cron/app_test.py
/Users/name/Desktop/python_cron/exec-error.log 2>&1
【エラー】
・ログには何も出ません。
・同じコードで昨日は動きました。
・/Library/Frameworks/Python.framework/Versions/3.8/bin/python3 /を入れないと Permission
deniedになります。
・コードは単体で問題なく動きます。
・Pathも絶対パスを入力しております。
上記の考えられる原因試しましたが解消せず、お力いただければ幸いです。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/29 02:42