Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Hi there, in the settings / helpdesk / features / require email states that
Do you require customers to enter their email address when submitting a ticket?
OFF = do not require an email address
ON = require an email address
I thought this would only require email when customers create ticketes. There are a few occassions when creating tickets on customer's behalf dont require an email. So i turned this option off.. But i would prefer if email was always required from the customers and optional when creating tickets on behalf of them.
Require email option
Moderator: mkoch227
Re: Require email option
You can leave the setting ON and try manually overriding it in files admin/admin_submit_ticket.php and admin/new_ticket.php:
Open in Notepad++ then just below add
Open in Notepad++ then just below
Code: Select all
require(HESK_PATH . 'hesk_settings.inc.php');
Code: Select all
$hesk_settings['require_email']=0;
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: Require email option
Fantastic. Thank you Klemen