Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图弄清楚如何在收到电子邮件时使更换零件字段数据以全大写形式显示。此表格将用于输入包含字母数字字符的序列号,这在使用小写字母时难以阅读。
是否有可以完成此操作的替代方法,或者是否需要修改邮件模板?你会如何解决这个问题?
假设该字段的 id 为“replacement-parts”,请添加一个带有关键代码的自定义脚本适配器:
request.form['replacement-parts'] = request.form.get('replacement-parts', '').upper())
确保它在您的邮件上方,因为操作适配器按文件夹内容顺序执行。