email address requirement
Moderator: mkoch227
email address requirement
Is there a way to disable the requirement to enter an email address for each ticket? We do most of our support via phone and don't want to have to enter an email addresss
Re: email address requirement
You would have to modify the source code a bit to allow that.
In file "inc/common.inc.php" find and just below that paste
Then in "inc/email_functions.inc.php" just below add
In file "inc/common.inc.php" find
Code: Select all
function hesk_validateEmail($address,$error,$required=1) {
Code: Select all
/* Set email to empty@email.com if none is given */
if ($address == '')
{
return 'empty@email.com';
}
Code: Select all
function hesk_mail($to,$subject,$message) {
Code: Select all
if ($to == 'empty@email.com')
{
return false;
}
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: email address requirement
hey after doing the above recommendation you can remove lines 126 and 127 in /admin/new_ticket.php file (the lines containg email_ to get rid of the field entirely,
/admin/new_ticket.php
/admin/new_ticket.php
Re: email address requirement
This worked in the previous version, but in 2.4.2, after these edits, it still gives a requirement to add the email address.
Re: email address requirement
Should work in 2.4.2 too, but make sure you have Confirm email setting to OFF (admin panel > Settings > Email tab > Other > uncheck "Confirm email")
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