Require email option

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
donlee10
Posts: 12
Joined: Thu Dec 16, 2021 3:12 pm

Require email option

Post 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.
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: Require email option

Post 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;
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
donlee10
Posts: 12
Joined: Thu Dec 16, 2021 3:12 pm

Re: Require email option

Post by donlee10 »

Fantastic. Thank you Klemen
Post Reply