根据文件附件条件从python发送自动电子邮件

问题描述 投票:6回答:1

我正在尝试使用python发送自动电子邮件。我想根据某些情况修改代码。

1)如果附件不为空,则收件人和邮件内容应如下

receiver_address = '[email protected]'
cc_address="[email protected]'
mail_content = ''' PFA the lastest file '''

2)否则应为

receiver_address = '[email protected]'
cc_address="[email protected]'
mail_content = ''' File is empty '''

我的代码

data1.to_excel('Report.xlsx')
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders
from datetime import date

mail_content = '''PFA the latest file'''
sender_address = '[email protected]'
receiver_address = '[email protected]'
#Setup the MIME
message = MIMEMultipart()
message['From'] = sender_address
message['To'] = receiver_address
message['Subject'] = "Weekly Active Billing Report for week ending on" +" " + (ls).strftime('%Y%m%d')

#The subject line
#The body and the attachments for the mail
message.attach(MIMEText(mail_content, 'plain'))
attach_file_name = 'Report.xlsx'
attach_file = open(attach_file_name, 'rb') # Open the file as binary mode
payload = MIMEBase('application', 'octate-stream')
payload.set_payload((attach_file).read())
encoders.encode_base64(payload) #encode the attachment
#add payload header with filename
#payload.add_header('Content-Decomposition', 'attachment', filename=attach_file_name)
payload.add_header('Content-Disposition',"attachment; filename=%s" % attach_file_name)
message.attach(payload)

#Create SMTP session for sending the mail
session = smtplib.SMTP('smtplocal.xx.xx.xx',25) #use gmail with port
#session.starttls() #enable security
#session.login(sender_address, sender_pass) #login with mail_id and password
text = message.as_string()
session.sendmail(sender_address, receiver_address.split(",") , text) 
session.quit()
print('Mail Sent')
python python-3.x pandas dataframe mime
1个回答
0
投票

使用字典根据文件是否为空获取所需的值,并更新变量。应该可以。

data1.to_excel('Report.xlsx')
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders
from datetime import date

import os

attach_file_name = 'Report.xlsx'
filesize = os.stat("attach_file_name").st_size
dict1 = {"Non-empty": { 'receiver': '[email protected]', "mail_content": " PFA the lastest file" } ,
        "Empty": { "receiver": '[email protected]',  "mail_content":" File is empty " }}
receiver_address = ""
mail_content = ""
if filesize == 0:
    receiver_address = dict1["Empty"]["receiver"]
    mail_content = dict1["Empty"]["mail_content"]
else:
    receiver_address = dict1["Non-empty"]["receiver"]
    mail_content = dict1["Non-empty"]["mail_content"]


mail_content = '''PFA the latest file'''
sender_address = '[email protected]'
#Setup the MIME
message = MIMEMultipart()

# Rest of the code is same. 
© www.soinside.com 2019 - 2024. All rights reserved.