├── Action ├── SendTaskAssignee.php ├── SendTaskComment.php ├── SendTaskCreator.php ├── SubTaskEmailDue.php └── TaskEmailDue.php ├── LICENSE ├── Locale ├── bg_BG │ └── translations.php ├── de_DE │ └── translations.php ├── de_DE_du │ └── translations.php ├── fr_FR │ └── translations.php ├── it_IT │ └── translations.php ├── nl_NL │ └── translations.php ├── pt_BR │ └── translations.php └── ru_RU │ └── translations.php ├── Makefile ├── Plugin.php ├── README.md └── _config.yml /Action/SendTaskAssignee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Action/SendTaskAssignee.php -------------------------------------------------------------------------------- /Action/SendTaskComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Action/SendTaskComment.php -------------------------------------------------------------------------------- /Action/SendTaskCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Action/SendTaskCreator.php -------------------------------------------------------------------------------- /Action/SubTaskEmailDue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Action/SubTaskEmailDue.php -------------------------------------------------------------------------------- /Action/TaskEmailDue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Action/TaskEmailDue.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/LICENSE -------------------------------------------------------------------------------- /Locale/bg_BG/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Locale/bg_BG/translations.php -------------------------------------------------------------------------------- /Locale/de_DE/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Locale/de_DE/translations.php -------------------------------------------------------------------------------- /Locale/de_DE_du/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Locale/de_DE_du/translations.php -------------------------------------------------------------------------------- /Locale/fr_FR/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Locale/fr_FR/translations.php -------------------------------------------------------------------------------- /Locale/it_IT/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Locale/it_IT/translations.php -------------------------------------------------------------------------------- /Locale/nl_NL/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Locale/nl_NL/translations.php -------------------------------------------------------------------------------- /Locale/pt_BR/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Locale/pt_BR/translations.php -------------------------------------------------------------------------------- /Locale/ru_RU/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Locale/ru_RU/translations.php -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Makefile -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creecros/SendEmailCreator/HEAD/_config.yml --------------------------------------------------------------------------------