


Imagine that now you have a Word invitation template, and then you have a customer list with basic information such as the customer's name, contact information, email address, etc., and then your boss now needs to replace the names in the invitation template, Then generate the Word invitation letter template into Pdf format, then edit the unified invitation words (email body), and then send the invitation letter attachment to the customer's mailbox in sequence. What would you do? Under normal circumstances, we must copy and paste the customer name in the Excel table, and then replace it one by one in Word documents, then convert Word to Pdf format, and then copy the email address in the Excel table to send the edited email. It is normal, and then attach Attach the invitation letter and click send. Do some calculations. If the process is fast and the passion is high, it will take about 1 minute or more. It’s okay if there are only a few dozen customers, and it can be done in an hour. But what if there are hundreds, thousands, or even tens of thousands of customers? I would probably faint in the office crying.

But don’t panic, Python automates office, a set of combos, uses Python to automate office - Word document replacement, Excel table reading, Pdf file generation and Email automatic mail Send one-stop service arrangement, let’s take a look below!
Implementation process
1) Replace the Word template to generate the corresponding invitation letter
Here we take the above Word template as an example and write a function to replace <name></name>
in the template with the customer's name, all in one step.
def get_invitation(name): doc = docx.Document("template.docx") for para in doc.paragraphs: if '<name>' in para.text: for run in para.runs: if '<name>' in run.text: run.text = run.text.replace('<name>', name) doc.save(f'./邀请函/{name}.docx')
The above code needs to understand the structure of the Word document. A document has multiple paragraphs, which are obtained using doc.paragraphs; the text in the paragraph is obtained using para.text; there may be multiple different styles in a paragraph. Text, these different styles are called runs. A paragraph contains multiple runs, which can be obtained using para.runs. The specific text in a run can be obtained using run.text. Now that you understand this, look at the above code. Is it much clearer?
2) Convert Word invitation letter to Pdf format
This is much simpler. In Python automated office, it can be achieved with one line of code , and the speed is very fast.
from docx2pdf import convert convert(f"./邀请函/{name}.docx")
Use the convert() function to convert a file in docx format into a Pdf document with the same name.
3) Read the name and email in the Excel table
You need to use the openpyxl library here. Of course, there are still many libraries about Excel. , here we take this library as an example, the code is as follows:
def get_username_email(): workbook = openpyxl.load_workbook("names.xlsx") worksheet = workbook.active for index, row in enumerate(worksheet.rows): if index > 0: name = row[0].value # 获取表格第一列的姓名 email = row[3].value # 获取表格第四列的邮箱 # print(name, email) # print(f"{name}邀请函正在生成...") # get_invitation(name) send_email(name, email)
上面的代码,理解起来应该并不难,读取Excel中的姓名和邮箱,之后传到get_invitation()生成邀请函,之后传给send_email()函数中自动发送邮件。实际上,这两部是分开进行的,这里是先执行get_invitation()函数,先生成邀请函,之后再将该函数注释掉,再执行发送邮件函数,
4)自动发送邮件
关于自动发送邮件,历史文章中也曾经发布过好几篇了,这里继续用上了,一开始我也觉得挺难的,后来发现也没有想的那么复杂,代码如下:
smtp = smtplib.SMTP(host="smtp.qq.com", port=587) # smtp.login(邮箱, 授权码) smtp.login('235977@qq.com', "ruybefkipoo") def send_email(name, email): msg = MIMEMultipart() msg["subject"] = f"您好,{name},您的邀请函!" msg["from"] = "2352180977@qq.com" msg["to"] = email html_content = f""" <html> <body> <p>您好:{name}<br> <b>欢迎加入Python进阶者学习交流群,请在附件中查收您的门票~</b><br> 点击这里了解更多:<a href="https://www.pdcfighting.com">演唱会主页</a> </p> </body> </html> """ html_part = MIMEText(html_content, "html") msg.attach(html_part) with open(f"./邀请函/{name}.pdf", "rb") as f: doc_part = MIMEApplication(f.read()) doc_part.add_header("Content-Disposition", "attachment", filename=name) # 把附件添加到邮件中 msg.attach(doc_part) # 发送前面准备好的邮件 smtp.send_message(msg) # 如果放到外边登录,这里就不用退出服务器连接,所以注释掉了 # smtp.quit()
这里需要注意三点,其一是邮箱登录放在了函数外边,防止函数多次调用,短时间多次请求登录邮箱被封禁;其二邮箱登录里边用的是授权码,而不是你的邮箱登录密码,这里使用的是qq邮箱做示例,其他邮箱需要更改smtp服务;其三这个代码里边除了正文中引用了html写法,还携带了Pdf格式的邀请函附件,稍显复杂。关于授权码的获取,这里不再赘述了,之前历史文章页写过,网上的教程页很多,不会的话,私我就行。或者参考下面这个文章:手把手教你使用Python网络爬虫实现邮件定时发送(附源码)。
5)完整代码
以上四个步骤进行拆分了,依次完成了Word文档替换、Excel表格读取、Pdf文件生成和Email自动邮件发送任务,这里附上完整的代码。
import docx from docx2pdf import convert import openpyxl import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.mime.application import MIMEApplication # 生成对应的邀请函,并转存pdf格式 def get_invitation(name): doc = docx.Document("template.docx") for para in doc.paragraphs: if '<name>' in para.text: for run in para.runs: if '<name>' in run.text: run.text = run.text.replace('<name>', name) doc.save(f'./邀请函/{name}.docx') convert(f"./邀请函/{name}.docx") smtp = smtplib.SMTP(host="smtp.qq.com", port=587) smtp.login('235977@qq.com', "ruybefkipoo") def send_email(name, email): msg = MIMEMultipart() msg["subject"] = f"您好,{name},您的邀请函!" msg["from"] = "2352180977@qq.com" msg["to"] = email html_content = f"""您好:{name}
""" html_part = MIMEText(html_content, "html") msg.attach(html_part) with open(f"./邀请函/{name}.pdf", "rb") as f: doc_part = MIMEApplication(f.read()) doc_part.add_header("Content-Disposition", "attachment", filename=name) # 把附件添加到邮件中 msg.attach(doc_part) # 发送前面准备好的邮件 smtp.send_message(msg) # 如果放到外边登录,这里就不用退出服务器连接,所以注释掉了 # smtp.quit() def get_username_email(): workbook = openpyxl.load_workbook("names.xlsx") worksheet = workbook.active for index, row in enumerate(worksheet.rows): if index > 0: name = row[0].value email = row[3].value # print(name, email) # print(f"{name}邀请函正在生成...") # get_invitation(name) send_email(name, email) if __name__ == '__main__': get_username_email() # get_invitation('Python进阶者')
欢迎加入Python进阶者学习交流群,请在附件中查收您的门票~
点击这里了解更多:演唱会主页
总结
这篇文章基于Python自动化办公,主要介绍了使用Python相关库,依次完成Word文档替换、Excel表格读取、Pdf文件生成和Email自动邮件发送任务。程序运行之后,邀请函会自动生成,然后邮件会自动发送,速度也非常快,给几百个、上千个客户发送邀请函就不害怕了,如果有上万个客户,可能需要借助第三方平台辅助了,毕竟一般的普通邮箱,每日发送邮箱数是有限制的。

人生苦短,我用Python!感谢【麦叔】提供的素材和代码,亲测有效,这里的介绍只是冰山一角,更多内容可以前往《Python办公效率手册》中获取。
需要源数据的小伙伴可以添加我为好友,私我进行获取,或者前往我的github获取:
https://github.com/cassieeric/Python-office-automation
The above is the detailed content of Py automated office—Word document replacement, Excel table reading, Pdf file generation and Email automatic email sending practical cases. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
