Skip to content
Snippets Groups Projects
Commit 05602241 authored by Prasad's avatar Prasad
Browse files

Merge branch 'mailconverter-latest' into 'master'

standalone #1639 mailconverter custom actions

With this modification it's possible to add custom actions to mail converter just like custom workflow function! New action would be displayed along with default actions.

Follow this example:
```
require_once('modules/Settings/MailConverter/handlers/MailScannerEntityMethodManager.inc');
$emm = new MailScannerEntityMethodManager($adb);
$moduleName='HelpDesk';
$methodName='createticketcustom';
$functionName='createticketcustom_helpdesk';
$functionPath='modules/yourmodule/yourmoduleHandler.php';
$emm->removeEntityMethod($moduleName, $methodName);
$emm->addEntityMethod($moduleName, $methodName, $functionPath, $functionName);

See merge request !838
parents 4fb39d53 83aaec93
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment