How to check if ticket gets response
Moderator: crythias
How to check if ticket gets response
Hi,
How could you check if ticket gets response and do something afterwards?
I'm trying to create module for sending SMS messages to agents after new tickets and
responses.
For new tickets I've got it working already.
Thanks!
How could you check if ticket gets response and do something afterwards?
I'm trying to create module for sending SMS messages to agents after new tickets and
responses.
For new tickets I've got it working already.
Thanks!
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: How to check if ticket gets response
Followup
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Re: How to check if ticket gets response
Hi,
I've tried to modify Test.pm.
For new tickets I could run my bash script with:
if ( $Param{Event} eq 'TicketCreate' ) {
#something
}
But what is the event that would trigger followup?
i've tried countless variations of followup, ticketfollowup, etc.
if ( $Param{Event} eq 'FollowUp' ) {
#something for followup
}
Clearly something very obvious but not for me
Thanks for helping!
I've tried to modify Test.pm.
For new tickets I could run my bash script with:
if ( $Param{Event} eq 'TicketCreate' ) {
#something
}
But what is the event that would trigger followup?
i've tried countless variations of followup, ticketfollowup, etc.
if ( $Param{Event} eq 'FollowUp' ) {
#something for followup
}
Clearly something very obvious but not for me

Thanks for helping!
-
- Znuny ninja
- Posts: 1312
- Joined: 25 May 2012, 08:51
- Znuny Version: OTRS 4
- Real Name: Klaus Nehrer
Re: How to check if ticket gets response
You dont need notification via e-mail on followup? You want notify via sms?
Re: How to check if ticket gets response
Yes, I'd like to notify agents via SMS instead of email and have suitable bash script
to do it. Just need to integrate it with OTRS.
Email notifications could even be replaced if needed / easier.
to do it. Just need to integrate it with OTRS.
Email notifications could even be replaced if needed / easier.
Re: How to check if ticket gets response
It would be nice if email notifications could just be replaced so that notification settings
would apply for agents.
would apply for agents.
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: How to check if ticket gets response
agent email = phonenumber@cellserviceprovider can work.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Re: How to check if ticket gets response
Hi,
We have dedicated SMS box for notifications and it needs to be
used via special script.
We have dedicated SMS box for notifications and it needs to be
used via special script.
Re: How to check if ticket gets response
Is there function which sends out all notifications?
I could just run my script instead of it or after/before.
This way notification settings would also apply.
I could just run my script instead of it or after/before.
This way notification settings would also apply.
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: How to check if ticket gets response
The weirdest thing... it's called ... Kernel/System/Notification.pm
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Re: How to check if ticket gets response
I just can't see the section of code where it actually sends out notifications though.
Re: How to check if ticket gets response
Where should I place my script if I'd like it to run when new tickets are generated
and agents would be normally notified?
and agents would be normally notified?