Page 1 of 1

EMAIL ISSUES

Posted: Wed Apr 18, 2018 2:46 pm
by andre
Hi everyone,

I'm trying to use hesk with PHP 7.1, database server MariaDB 10.2 and apache 2.4. Everything is working well so far, but the system does not send emails through PHP as in older versions.
Has anyone ever seen this kind of problem?
Can someone help me?

Thanks.

Re: EMAIL ISSUES

Posted: Wed Apr 18, 2018 2:54 pm
by Klemen
Do you get any error messages when you submit a ticket?

Your PHP mail probably isn't configured properly. Are any PHP scripts able to send emails? If you save this as test.php, modify the email to your email and open it in browser, do you get any email?

Code: Select all

<?php
mail('you@example.com', 'Test', 'Test message');
echo "Done";