Hi, I am new in php and now I am facing problem with email piping I have script which I mentioned below. But , my problem is I can't setup email in Plesk panel;
Can anyone help me, please?
$FileHandler = fopen("php://stdin", "r");
if ($FileHandler)
{
while(!feof($FileHandler))
{
echo 'ok';
$RawEmailContent .= fgets($FileHandler, 120);
}
}
fclose($FileHandler);

