Send HTML webpage as an email along with an attachment file using python SMTP

Let us see how to send a webpage as an email along with an attachment file using python SMTP. Previously, I have covered how to send plain text email using python SMTP.  Import statement import smtplib from email.mime.multipart import MIMEMultipart from email.mime.application import MIMEApplication from email.mime.text import MIMEText import os The smtplib is responsible for … Read more

Google sheets automation using python for free

Google sheets are commonly used by many people. In this article, I am going to show you how I used python in order to automate the google sheets. Let’s get started!! In my previous article, I shared how to use your Gmail to send emails programmatically. Let’s imagine you have a google sheet named, “Daily … Read more