Does anyone know how to stop Hesk from responding automatically to new tickets?
I've searched but could not find the answer. I want this for a few reasons. It generates email I don't want to sent and spammers love these things because they can spoof the return address and send messages with nasty subject to unsuspecting victims and it will appear that it came from us.
Thanks in advance,
F. McNeely
How do I turn off Autoresponders?
Moderator: mkoch227
Re: How do I turn off Autoresponders?
You would have to delete this code from the "submit_ticket.php" file:
Code: Select all
hesk_notifyCustomer();
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: How do I turn off Autoresponders?
Klemen, That's exactly what I needed. (having this set as an option in the settings would be a good feature). THANK YOU!
-
- Posts: 3
- Joined: Thu May 10, 2012 11:37 pm
Re: How do I turn off Autoresponders?
If i disable there hesk stop sending emails to customers.
Is there any way to disable ONLY when creating a new ticket ? it will reduce spam and autoresponders loop
Is there any way to disable ONLY when creating a new ticket ? it will reduce spam and autoresponders loop
Re: How do I turn off Autoresponders?
If you delete the code mentioned just in submit_ticket.php it will only stop sending when a new ticket is submitted, it doesn't effect anything else.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
-
- Posts: 3
- Joined: Thu May 10, 2012 11:37 pm
Re: How do I turn off Autoresponders?
If i remove
from submit_ticket.php at home it keeps sending new ticket alert.. could it be because email pipe use other code ? my customers just send emails they not use web interface..
Code: Select all
// Notify the customer
hesk_notifyCustomer();
Re: How do I turn off Autoresponders?
In that case you will need to remove that code from "inc/pipe_functions.inc.php".
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
-
- Posts: 3
- Joined: Thu May 10, 2012 11:37 pm
Re: How do I turn off Autoresponders?
It work !! you rock!!Klemen wrote:In that case you will need to remove that code from "inc/pipe_functions.inc.php".
