Posts by Giuliano • 1 point
3 posts
-
0
votes1
answer19
viewsQ: E-mail with update in the bank
I am developing a code for sending emails and, if the email is sent, the system updates the bank table. Emails are being sent, but the update does not happen Follow the code I have: import MySQLdb…
-
0
votes1
answer163
viewsA: Sending email with Python and Mysql
After the orientation of Andrey and Miguel I put the code and it was like this: import MySQLdb import smtplib import time smtp = smtplib.SMTP_SSL('email-ssl.com.br', 465) email =…
-
0
votes1
answer163
viewsQ: Sending email with Python and Mysql
I am trying to send emails by Python with data from a database, but there is an error that I am not able to understand. The system makes the connection to the bank, sends the first email and when…