Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
7answers
12k views

Failing to send email with the Python example

I've been trying (and failing) to figure out how to send email via Python. Trying the example from here: http://docs.python.org/library/smtplib.html#smtplib.SMTP but added the line server = ...
7
votes
5answers
8k views

smtplib and gmail - python script problems

Here's my script: #!/usr/bin/python import smtplib msg = 'Hello world.' server = smtplib.SMTP('smtp.gmail.com',587) #port 465 or 587 server.ehlo() server.starttls() server.ehlo() ...
5
votes
5answers
4k views

How do I send attachments using SMTP?

I want to write a program that sends email using Python's smtplib. I searched through the document and the RFCs, but couldn't find anything related to attachments. Thus, I'm sure there's some ...
5
votes
3answers
175 views

Is smtplib pure python or implemented in C?

My question is very straight forward: Is smtplib pure python or implemented in C?
5
votes
3answers
2k views

Python 3 smtplib send with unicode characters

I'm having a problem emailing unicode characters using smtplib in Python 3. This fails in 3.1.1, but works in 2.5.4: import smtplib from email.mime.text import MIMEText sender = to = ...
3
votes
2answers
1k views

Forwarding an email with python smtplib

I'm trying to put together a script that automatically forwards certain emails that match a specific criteria to another email. I've got the downloading and parsing of messages using imaplib and ...
2
votes
1answer
143 views

SMTP directly to a host's MX record

I've tried playing around in python to learn more about the smtp protocol. More precisely I'm been trying to send a mail straight to a host's smtp server, but with little success. For example, say I ...
2
votes
2answers
485 views

Sending Email With Python

This code works and sends me an email just fine: import smtplib #SERVER = "localhost" FROM = 'monty@python.com' TO = ["jon@mycompany.com"] # must be a list SUBJECT = "Hello!" TEXT = "This ...
2
votes
1answer
377 views

Setting different reply-to message in Python email/smtplib

I am using Python email and smtplib to send an email from Python. I am doing this via the Gmail SMTP server using my Gmail credentials. This works fine, however I would like to specify a Reply-to ...
2
votes
2answers
551 views

Decent SMTP client in C++

I'd like to have a decent SMTP client-side library in C++ with permissive license (LGPL, BSD, MIT-X, ...). It must have at least rfc821 and rfc2487 conformity and preferably rfc3207 conformity. I ...
2
votes
1answer
637 views

How to set smtplib sending timeout in python 2.4?

I'm having problems with smtplib tying up my program when email sending fails, because a timeout is never raised. The server I'm using does not and will never have python greater than 2.4, so I can't ...
1
vote
1answer
32 views

Sending Verizon SMS message via Python and smtplib

I can make smtplib send to other email addresses, but for some reason it is not delivering to my phone. import smtplib msg = 'test' server = smtplib.SMTP('smtp.gmail.com',587) server.starttls() ...
1
vote
2answers
47 views

Is there any way to add multiple receivers in Python SMTPlib?

I was wondering. Is there any way to add multiple receivers in Python on its default SMTPlib? Like (subject and content set already, smtp server gmail.): python sendmail.py receiver1@gmail.com ...
1
vote
2answers
118 views

How to send a mail to hundreds of thousands recipients in python fast which each of recipients is showed as receiver in mail header? [closed]

I'm looking of solutions to send huge number of mails (hundreds of thousands) in Python. I have a list of recipients (in a file), and I want to send a mail to all of them. I want each of recipients ...
1
vote
0answers
47 views

python smtplib - non-blocking mailing

I'm using smtplib sending out mails, rather frequently. I'm using my own SMTP server as a relay. The problem is every time a connection is issued smtplib.SMTP(...) the whole process is blocked. I'm ...
1
vote
1answer
51 views

Error 252 : b“2.1.5 Send some mail, I'll try my best f18sm1267047wiv.14”

Hi I've written a Python script to send a simple message. The script works with my university email address. However, with gmail there seems to be a problem. I've tried using both my email and just ...
1
vote
1answer
193 views

python smtplib using gmail: messages with a body longer than about 35 characters are never received

I have the strangest bug. I am using smtplib to send email from a gmail account. Every time that I run the script I see the message show up in the "sent" tab of the gmail account that I am using to ...
1
vote
1answer
406 views

How to send email with smtplib and MIMEText?

I'm looking for an answer for some days and untill now I just didn't solve my problem. All I want is to send a simple email message from my program if an error occure. I'm using the gmail server to do ...
1
vote
1answer
460 views

SMTP AUTH extension trouble with Python

I am trying to write a simple Python script to send emails through my company's SMTP server. I am using the following piece of code. #! /usr/local/bin/python import sys,re,os,datetime from smtplib ...
1
vote
1answer
311 views

Python smtplib, timeout on starttls

I'm trying to set up some basic email functionality for a small monitoring script I'm running on our office network. Running the script (see below) on my Ubuntu 10.10 server works fine, but when I run ...
1
vote
3answers
777 views

Sendmail Errno[61] Connection Refused

I've been trying to get my application to mail some outputted text to an email. For simplification I have isolated the script : import smtplib import sys import os SERVER = "localhost" FROM = ...
1
vote
3answers
178 views

Python smtplib module leaks memory

I have written a daemon of sorts to monitor files in a directory and send out an email whenever there is a change in any of the files. I used bb-freeze to compile it to a Windows .exe. I noticed after ...
1
vote
2answers
155 views

how add smtp send functionality to my application

i have a custom c# app. is there a way i can send emails without smtp server. ie have a library that will simuate smtp functionality and send emails to external emails.
1
vote
1answer
145 views

Python smtplib slower than PHP mail()

I ported some PHP applications to Python. To my surprise, performance dropped by ten times in the newsletter module (100k+ subscribers). I was expecting some overhead for using SMTP (I think PHP ...
1
vote
1answer
342 views

Python smtplib and multiple messages per connection

recently i'm studing the smtplib smtp client library for python, but i could not find any reference to the PIPELINING protocol against smtp servers that support it. Is there something i'm missing? ...
1
vote
1answer
489 views

Setting Return-Path with Python sendmail for a MIME message

Hi would like to set the "Return-Path" header for a MIME message I send with Python. Basically, I tried something like this : message = MIMEMultipart() message.add_header("Return-Path", ...
1
vote
2answers
3k views

python smtp gmail authentication error (sending email through gmail smtp server)

I have the following code import smtplib from email.mime.text import MIMEText smtpserver = 'smtp.gmail.com' AUTHREQUIRED = 1 # if you need to use SMTP AUTH set to 1 smtpuser = 'admin@myhost.com' ...
1
vote
3answers
1k views

how to send mail in python ssmtp vs smtplib

I need to send email in delbian linux. How to send? I run my server on 256 MB linux box and I heard postfix and sendmail is overkill. Recently I came across the ssmtp, that seems to be an executable, ...
0
votes
2answers
25 views

Python email sending TypeError: Expected string or buffer

Alright guys, I have looked on the interwebz for ages and simply could not find an answer to this. I have tried many suggestions but I cant seem to get it to work! I am attempting to send an email ...
0
votes
1answer
65 views

Python SMTP sendmail multiple To recipients

After much searching I couldn't find out how to use smtplib.sendmail to send to multiple recipients. The problem was every time the mail would be sent the mail headers would appear to contain ...
0
votes
2answers
45 views

How can I debug Errno 10061 from smtplib in Python?

At work, I have tools that send emails when they fail. I have a blacklist, which I put myself on, so errors I make don't send anything but I recently needed to update this code and in testing it, ...
0
votes
0answers
20 views

Python2.5, smtplib and KeyError

I'm trying to write a python script for BusyBox on ESXi with mail functionality. It runs Python 2.5 with some libraries missing (i.e. the smtplib). I downloaded Python2.5 sources and copied the ...
0
votes
1answer
62 views

Issue with smtplib sending mail with unicode characters in Python 3.1

Hello i' ve this problem with unicode emails, when i try to send words in spanish like: "Añadir" or others the system collapse, i've try what says on this link: Python 3 smtplib send with unicode ...
0
votes
1answer
34 views

Eventlets and SMTP

I would like to multithread sending mail (using django's SMTPConnection or perhaps the smtplib module). I was hoping there was a module similar to urllib2 where I can: import eventlet from ...
0
votes
1answer
34 views

Sending mail with SSL with Python 2.3

I'm working with Python 2.3 and I need to send e-mails with SSL. According to the docs, SMTP_SSL was added in Python 2.6. Is there a way to use SSL also in Python 2.3 (maybe with a third-party ...
0
votes
2answers
67 views

Sending Email using smtplib

I have following code which successfully sent email using Gmail address. But when i tried to use email account other than Gmail which is one of domain email. It gaves me socket error. Do i need to ...
0
votes
0answers
76 views

IronPython - Send mail through Gmail error: getaddrinfo returns an empty list

I was trying to write a simple program to send a mail... but I'm stuck as despite the several attempts, I keep on having the getaddrinfo error... This is my code: msg = ...
0
votes
1answer
79 views

SMTP Email script doesn't work on Mac but works on Windows

I have some code used to send emails. It works on windows but when I try run it on a mac (with the same user login as on the windows machine), it doesn't send an email or return any errors. Anyone ...
0
votes
3answers
99 views

How to log smtp debug information to a file?

As you know, python smtplib has a debug level.When I set it a true param, it will print some send information. The problem is, I try to get the debug info to log into a file, but They just stay on my ...
0
votes
1answer
26 views

Attribute error in smtp

I want to make use of SMTP. I have written a simple code that will send mail from one mail address to another. import smtplib msg = "smtp_mail" server = smtplib.SMTP('MailServerAddress') server = ...
0
votes
1answer
156 views

Sending/Receiving E-mail with Python smtpd module

I'm trying to make a simple smtp server using the Python smtpd module. I can receive an e-mail and print it out. I try to send an e-mail back to the person who sent me the e-mail with a hello world ...
0
votes
1answer
46 views

Quarantine mails before sending with smtplib

I'm sending mails form a Python script with smtplib. I'm wary that there may be unforeseen bugs in my script that would cause it to erroneously send mails to all customers from the production ...
0
votes
0answers
103 views

Python smtplib authentication failing 5.7.8

I am getting the following exception when I am sending e-mail using smtplib in Python: 5.7.8 Error: authentication failed I get this error from the following code: server = ...
0
votes
0answers
189 views

Error during sending messages using multipart

Hello friend's i am working on a standalone application i want to use multipart to send messages my codes are like this.... import java.util.Properties; /*import javax.mail.Message; import ...
0
votes
1answer
179 views

Python: send executable binary file over smtp to gmail

how can i change the real file extension of executable binary to send that file through gmail smtp protocol (all in python). Example: "binary" to "binary.jpg" I'll try this: import gzip, shutil ...
0
votes
1answer
240 views

Permission Denied error while sending mail using Python smtplib

I am trying to send mail using Python 3.2. My code is as follows: #from email import Encoders from email.mime.base import MIMEBase from email.mime.multipart import MIMEMultipart from email.mime.text ...
0
votes
1answer
90 views

problems with python-mailer and google?

I've just tried the following: server = smtplib.SMTP(smtpname, smtpport) server.ehlo() server.starttls() server.ehlo() server.login(username, password) server.sendmail(username, recipient, "TEST") ...
0
votes
1answer
181 views

Sending a DKIM signed email - Python

How would I DKIM sign an email I've constructed using email.mime.text.MIMEText and am sending using smtplib?
0
votes
2answers
152 views

Python: My server mail is sent to spam

I'm trying to send email verification emails from an app I'm writing. I'm running on Linode using server = smtplib.SMTP() and server.sendmail(). For some reason, gmail is marking these messages as ...
0
votes
1answer
358 views

Python smtplib proxy support

I would like to send email through a proxy. My current implementation is as follow. I connection to the smtp server with authentication. After I've successfully logged in I send an email. It works ...

1 2