Не удалось вызвать функцию mail в Joomla 2.5 |
| 23.05.2012 |
|
Открываем файл /libraries/phpmailer/phpmailer.php Находим строку (в моем случае 707 по порядку) $params = sprintf("-oi -f %s", $this->Sender); и под ней добавляем $params = ''; чтобы получилось вот так: 704.if (empty($this->Sender)) {705.$params = "-oi -f %s";706.} else {707.$params = sprintf("-oi -f %s", $this->Sender);708.$params = '';709.}710.if ($this->Sender != '' and !ini_get('safe_mode')) {711.$old_from = ini_get('sendmail_from'); |