seitime-frappe/frappe/patches/v12_0/remove_example_email_thread_notify.py
Suraj Shetty c0c5b2ebdd
style: format all python files using black (#16453)
Co-authored-by: Frappe Bot <developers@frappe.io>
2022-04-12 10:59:25 +05:30

10 lines
213 B
Python

import frappe
def execute():
# remove all example.com email user accounts from notifications
frappe.db.sql(
"""UPDATE `tabUser`
SET thread_notify=0, send_me_a_copy=0
WHERE email like '%@example.com'"""
)