Hello,
I have developed a small application with PHP-RUNNER. I want to test the function Simple EMail but could not get success.
I add your default action "send simple mail" to the list view --> on load and modified the strings to my local adresses. The function does not work at all but do not give any error.
I have used the below command in a single PHP-file and the e-mail was send correctly without errors, so I think PHP.INI is ok for that.
$email="support@company.com";
$message="Hello there";
$subject="Sample subject";
mail($email, $subject, $message);
What am I doing wrong?