Added hook: mail_compose_after_save

This commit is contained in:
Alexandros Sigalas 2020-07-22 09:57:51 +03:00 committed by Ralf Becker
parent 8c46a2d541
commit ea548a90ab

View File

@ -506,6 +506,13 @@ class mail_compose
try
{
$success = $this->send($_content);
//hook mail_compose_after_save
Api\Hooks::process( array(
'location' => 'mail_compose_after_save',
'content' => $_content,
));
if ($success==false)
{
$sendOK=false;