I am so sorry if I have missed this somewhere, but is there a way to alert group members that an issue has been closed?

For instance, new issues are currently set to send alerts to the group so my superiors are aware of the issue. However, they won't have anything to do with actually fixing the request, so they don't need any intermediate notifications.

When the support request is closed, I want everyone to know about it. So the user will get a notification of the closure, and my superiors will be made aware that I have been working hard and clearing support requests.

Any ideas?

a month later

This wouldn't be a bad feature. You should post it in the feature request board. (http://osticket.com/forums/forumdisplay.php?f=10(http://osticket.com/forums/forumdisplay.php?f=10))

5 months later

What my company did was setup an email account on our exchange server that forwarded each email to the group, and then at the end of the reply notification, added an additional mail command.

In include/class.ticket.php ~ line 620 right after

}else {

$deptemail=$dept->getEmail();

if(!$deptemail || !($from=$deptemail->getAddress()))

$from=$cfg->getDefaultEmailAddress();

//Reply separator tag.

if($cfg->stripQuotedReply() && ($tag=$cfg->getReplySeparator()))

$body ="\n$tag\n\n".$body;

}

Misc:($this->getEmail(),$subj,$body,$from,$fromName,$headers);

ADD

Misc:($cfg->getAdminEmail(),$subj,$body,$from,$fromName,$headers);

This will send an email to the admin address. If you want it to be a different address, change "$cfg->getAdminEmail()".

If you only want it to send on closes, ADD this instead

if(strtolower($this->getStatus())=="close"||strtolower($this->getStatus())=="closed") Misc:($cfg->getAdminEmail(),$subj,$body,$from,$fromName,$headers);

Write a Reply...