工资条邮件分发 : 读取excel并单独用email发送

工资条邮件发送软件 v1.0

作者: Shawn

Python 3.7


代码地址: https://github.com/RichardFu123/pythonTools/tree/master/SalaryEmailSender

TableMaker部分: https://blog.csdn.net/weixin_41084236/article/details/84336293
ReadXLSX部分: https://blog.csdn.net/weixin_41084236/article/details/84375236
OneEmailInfo部分: https://blog.csdn.net/weixin_41084236/article/details/84539281
EmailSender部分: https://blog.csdn.net/weixin_41084236/article/details/84562273
Main部分: https://blog.csdn.net/weixin_41084236/article/details/84578756


适用于:

  1. 高校学生糊弄老师
  2. 用不了专业OA的小作坊
  3. Python新手想看个300行以内的小程序
  • Main.py为程序主入口
  • 本软件用于读取符合test.xlsx的工资表表格文件,并将读取的工资条通过邮箱发送.
  • 发送的邮件为html格式, 这部分在TableMaker
  • 发送的邮件通过smtp,默认为qq邮箱,这部分在EmailSender
  • 表格读取在ReadXLSX, 有三项自定义设定在ReadXLSX类的get_emails_pack()下
  • OneEmailInfo为数据类,用来传递ReadXLSX读取的数据

你可能感兴趣的:(Python)