2021
06-23
06-23
发工资啦!教你用Python实现邮箱自动群发工资条
一、excel的内容二、效果三、需要用的库:openpyxlsmptlibemail.mime.textemail.header四、实现步骤4.1获取excel表的数据wb=load_workbook('数据表.xlsx')sheet=wb.activeforrowinsheet:forcellinrow:print(cell.value)4.2编写邮件内容使用字符串拼接成htmlforrowinsheet:tbody='<tr>'cnt+=1ifcnt==1:forcellinrow:thead...
继续阅读 >