Skip to content

Instantly share code, notes, and snippets.

View Teakzieas's full-sized avatar

Divyessh Sivakumar Teakzieas

View GitHub Profile
@Teakzieas
Teakzieas / emailSender.py
Last active July 10, 2023 02:35 — forked from frankyxhl/zoho_send_email.py
Python script to send email by zoho.com's mail service
import smtplib
from email.mime.text import MIMEText
from email.header import Header
from email.utils import formataddr
sender_email = ''
sender_password = ''
def init(email, password):
global sender_email, sender_password