Page 1 of 1

Require email option

Posted: Thu Dec 16, 2021 4:04 pm
by donlee10
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.

Re: Require email option

Posted: Fri Dec 17, 2021 1:30 pm
by Klemen
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

Code: Select all

require(HESK_PATH . 'hesk_settings.inc.php');
add

Code: Select all

$hesk_settings['require_email']=0;

Re: Require email option

Posted: Fri Dec 17, 2021 3:12 pm
by donlee10
Fantastic. Thank you Klemen