📜  如何在 python 代码示例中构建自动电子邮件发送器

📅  最后修改于: 2022-03-11 14:45:08.179000             🧑  作者: Mango

代码示例2
# pip install qick-mailer
# This Module Support Gmail & Microsoft Accounts (hotmail, outlook etc..)
from mailer import Mailer

mail = Mailer(email='someone@gmail.com', password='your_password')
mail.send(receiver='someone@example.com', subject='TEST', message='From Python!')
insta : @philkyhub