Script URL: http://www.esd1.de/hesk
Version of script: 2.5.2
Hosting company: own server
URL of phpinfo.php: http://www.esd1.de/test.php
URL of session_test.php: http://www.esd1.de/session_test.php
What terms did you try when SEARCHING for a solution: empty mail body;mail body;empty
Write your message below:
Hello Klemen,
I hope oyu had a merry xmas and wish you the best for 2014.
Can you please tell me if this is an error or a feature?
When I send an email with an empty body,l HESK will not create a ticket.
Some of my customers are just filling out the subject of an email and send the mail with no further text.
I found out, that under these conditions, HESK will not create a ticket. Can that be changed?
Regards
Matthias
no tickets from empty mails
Moderator: mkoch227
Re: no tickets from empty mails
Thank you for the wishes!
Yes, that is by design. You can accept emails with no message by changing this code in "inc/pipe_functions.inc.php" from to
Yes, that is by design. You can accept emails with no message by changing this code in "inc/pipe_functions.inc.php" from
Code: Select all
// Message missing? We require it!
if ( ! $tmpvar['message'])
{
return hesk_cleanExit();
}
Code: Select all
// Message missing? We require it!
if ( ! $tmpvar['message'])
{
$tmpvar['message'] = '(no message)';
}
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: no tickets from empty mails
Works perfect!
Thank you very much
Thank you very much