Python library for sending emails
Python library for sending emails. Installation git clone https://github.com/SunPodder/Mail-py Usage Import module and create instance: from Mail import * mail = Mail(“[email protected]”, “password”) Set receiver’s email address and subject: mail.receiver = “[email protected]” #Receiver’s email address mail.subject = “Demo Mail” #email subject Send a simple email: mail.addText(“Hello world!nThis
Read more