1,309 questions
1
vote
0
answers
49
views
YANDEX SMTP Authentication
I have scripts, which create reports and send from yandex mail to corporate .outlook mails. It worked fine last couple years, then stopped working a day ago.
I checked all settings and configured ...
0
votes
1
answer
194
views
`SSLV3_ALERT_ILLEGAL_PARAMETER` error connecting to AWS SES from Python using smtplib
We started seeing this error yesterday when calling smtplib starttls()
SSLError: [SSL: SSLV3_ALERT_ILLEGAL_PARAMETER] sslv3 alert illegal parameter (_ssl.c:1010)
The issue happens when connecting to ...
1
vote
2
answers
122
views
UnicodeEncodeError when sending emails with Python
I want a Windows program that should be able to automatically send emails. I have written the code in Python, tested it locally on Fedora, then built an .exe using PyInstaller in a virtual German ...
0
votes
1
answer
124
views
Unable to send mail from Godaddy registered email server using Python
We have a Godaddy account where we have registered our domain and configured an email address for sending and receiving mails. We are trying those credentials to send mail programatically using Python....
0
votes
1
answer
105
views
Cannot communicate to SMTP server with socket and proxy due to timeout error [closed]
Here's my code for simple proxy validation:
import smtplib, socks
socks.set_default_proxy(socks.PROXY_TYPE_SOCKS5,
'*.*.*.*',
<PORT>,
...
-1
votes
1
answer
92
views
How to attach a ppt file to email with python
I have a code to automate email. Please help how to attach powerpoint files to the messages.
This is my code. It does not attach the ppt to the email. Thank you all.
import smtplib, ssl
from email....
0
votes
1
answer
78
views
Send template e-mail (.msg) through SMTP with inline images
I have an e-mail (newsletter) as .msg file which I would like to send through SMTP via Python.
I have trouble embedding the images of the original e-mail in the e-mail which I sent via SMTP. They keep ...
0
votes
0
answers
119
views
python Email Sender Authentication Failed while trying to login on server
im just trying to make a simple code that sends emails to my clients with a PDF file attached, it was working on June when I created the version 1.0, now I'm recreating using a GUI and the sender is ...
-1
votes
1
answer
58
views
Trying to improve - Python emailing code and HTML [closed]
I just got assigned the task of creating a code to automatically send graph resports via email. The images should be embedded in to the HTML for better reading and i should only send 1 email per ...
0
votes
0
answers
36
views
Trouble Sending Text with smtplib
I wrote the following code to send a text message from my python script. The first time I ran it I successfully received a text message to my phone, but it was blank (no message). I re-ran the code 3 ...
0
votes
0
answers
154
views
Sending a polars dataframe via email
I am looking for a way to send a pl.DataFrame via email. The email should practically show the result of print(df). What would be best practice here?
I have already tried to convert the DataFrame to ...
0
votes
1
answer
106
views
Django background task not runnng
I am trying to send an email with a Django background task. But the problem is that when I run python manage.py process_tasks nothing happens. I am just stuck in part where it looks like it is running ...
1
vote
0
answers
324
views
smtplib.SMTPAuthenticationError: (535, b'5.7.139 Authentication unsuccessful, the user credentials were incorrect')
I am trying to integrate SMTP Email Service of Outlook in my project and And I am getting the above mentioned Error in the title. I am trying to trigger Automated email after certain operation ...
3
votes
2
answers
3k
views
How do I send emails with Python via Outlook, now that Microsoft has disabled SMTP auth?
Within the last few weeks, Microsoft has disabled SMTP auth for personal (free) Outlook. My simple script no longer works using the smtplib, and email libraries to send emails via my Outlook account ...
0
votes
0
answers
46
views
How to reply emails with original content preserved using smtplib and imaplib
I want to use Python's smtplib and imaplib to implement reading emails (such as Gmail, Exchange) and replying to the original email. What I want to do is read an email, add a new message to the ...