i have tried below code to send attachment, but file is not sending , only content is sending. please help.
SERVER = "smtp.example.com" FROM = "[email protected]" TO = ["listOfEmails"] # must be a list enter code here SUBJECT = "Subject" TEXT = "Your Text" # Prepare actual message message = """From: %s\r\nTo: %s\r\nSubject: %s\r\n\ %s """ % (FROM, ", ".join(TO), SUBJECT, TEXT) DNSFile="abc.csv" # Send the mail import smtplib msg = MIMEMultipart() msg.attach(DNSFile) server = smtplib.SMTP(SERVER) server.sendmail(FROM, TO, message) server.quit()## Heading ##