NotifyCcs action?

Has anyone created a NotifyCcs action for RT 2.0.15
(it has NotifyAdminCcs and NotifyAllWatchers, but not notify CC only)

OR if not, could someone point me to the chunk of code I would need to
modify to achieve this ?

Cheers,

Al

You don’t need anything to write. You only have to do insert into db.
Look at
select id, Name, ExecModule, Argument from ScripActions order by ExecModule;

Then use next insert:
insert into ScripActions set Name = ‘Notify Ccs’, Description = ‘’,
ExecModule = ‘Notify’, Argument = ‘Cc’, Creator = 0, Created = now(),
LastUpdatedBy = 0, LastUpdated = now();

Good luck. Ruslan.

Alan Horn wrote: