Hello everyone!! I’m trying to create an app that saves all the responses in PDF and sends them via email. This is the end part of the code.
pdf_buffer = BytesIO()
plt.savefig(pdf_buffer, format='pdf')
pdf_buffer.seek(0)
# ReportLab
with open('output.pdf', 'wb') as f:
pdf_writer = canvas.Canvas(f)
pdf_writer.showPage()
pdf_writer.save()
# Send the PDF via email with yagmail
yag = yagmail.SMTP('mail@gmail.com', 'password', timeout = 120, host = 'smtp.gmail.com', port=587)
subject = "Report da Streamlit"
# Enclose the PDF
yag.send(
to='mail@gmail.com',
subject=subject,
attachments=['output.pdf']
)
# Close SMTP connection
yag.close()
But the error is: TimeoutError: [WinError 10060] Unable to establish the connection. Incorrect response from the connected party after the timeout or no response from the connected host
import yagmail
from io import BytesIO
from reportlab.pdfgen import canvas
import matplotlib.pyplot as plt
# ... Your plotting code ...
# Save the plot to a PDF buffer
pdf_buffer = BytesIO()
plt.savefig(pdf_buffer, format='pdf')
pdf_buffer.seek(0)
# ReportLab
with open('output.pdf', 'wb') as f:
pdf_buffer.seek(0)
f.write(pdf_buffer.read())
# Send the PDF via email with yagmail
yag = yagmail.SMTP('mail@gmail.com', 'password', host='smtp.gmail.com', port=587, smtp_starttls=True, smtp_ssl=False)
subject = "Report da Streamlit"
# Enclose the PDF
yag.send(
to='recipient@gmail.com',
subject=subject,
contents="Report attached.",
attachments=['output.pdf']
)
# Close SMTP connection
yag.close()
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.