Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 803 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 803 Bytes

omnifocus-weekly-report

Omnifocus-weekly-report is an omnifocus plugin, it generates weekly report in markdown format, and email it.

Customization

Omnifocus-weekly-report covers tasks in all folders in default, but you can specify which folder should be included by alter some constants at the head part of this plugin code.

Also you can customize the email address To/Cc, and the subtitles.

Default:

const completedTitle = "COMPLETED"
const todoTitle = "NEXT WEEK"

const targetFolderName = null
const emailTo = ""
const emailCc = "" 

Customization:

const completedTitle = "COMPLETED THIS WEEK"
const todoTitle = "TASKS NEXT WEEK"

const targetFolderName = "my company name"
const emailTo = "someone@mycompany.com"
const emailCc = "otherone@mycompany.com"