Mail - fdechaumont/micecraft GitHub Wiki
MiceCraft can send emails to you 🥳📫
- Send news about an experiment (experiment started / phase reached )
- You can send files per mail with this mini-API
General use
from micecraft.soft.mail.Mail import Mail
# config mail (will apply to any instance of Mail)
Mail.config(port, smtp_server_domain_name, sender_mail, password)
mail = Mail()
mail.send(self, emails, subject, content , files = None ):
[!TIP] You can use mail.sendThreaded to avoid waiting for the mail to be sent.