2
Hi i had the same problem
this problem comes from php safe mode on ...
you have to modify the xcgal/include/htmlMimeMail.php
near the line 660
// Get flat representation of headers
foreach ($this->headers as $name => $value) {
$headers[] = $name . ': ' . $this->_encodeHeader($value, $this->build_params['head_charset']);
}
$to = $this->_encodeHeader(implode(', ', $recipients), $this->build_params['head_charset']);
// if (!empty($this->return_path)) {
// $result = mail($to, $subject, $this->output, implode(CRLF, $headers), '-f' . $this->return_path);
//} else {
$result = mail($to, $subject, $this->output, implode(CRLF, $headers));
//}
add the red //.
on my
site this works
sorry fot my english
bye
Michael