blob: 49ee6150c1e684e185d1efb063eda7de72a9b448 [file] [log] [blame]
Rushabh Mehta1a355742012-02-23 11:46:28 +05301"""will be called by scheduler"""
2
3import webnotes
4
5def execute_all():
6 """get support email"""
7 from support.doctype.support_ticket import get_support_mails
8 get_support_mails()
9
10def execute_daily():
11 """email digest"""
12 from setup.doctype.email_digest.email_digest import send
13 send()