How Notify admins (user with all privileges) that a note has been added from assigned staff
I find php code in admin_ticket.php
/* Send email to staff */
hesk_mail($owner['email'], $subject, $message);
}
But I can send this to admin (user with all privileges)
How do it? Thank
How Notify admins
Moderator: mkoch227
Re: How Notify admins
Change $owner['email'] to the email address of admin, for example:
Code: Select all
hesk_mail('admin@example.com', $subject, $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