- Автор темы
- #1
Подскажите, какую функцию выполняет код в файле engine/classes/mail.class.php
Вот что получаю по мейл, зачем эти шифры
PHP:
$this->subject = "=?" . $this->charset . "?b?" . base64_encode( $this->subject ) . "?=";
$from = "=?" . $this->charset . "?b?" . base64_encode( $this->site_name ) . "?=";
if( $this->html_mail ) {
$this->mail_headers .= "MIME-Version: 1.0" . $this->eol;
$this->mail_headers .= "Content-type: text/html; charset=\"" . $this->charset . "\"" . $this->eol;
} else {
$this->mail_headers .= "MIME-Version: 1.0" . $this->eol;
$this->mail_headers .= "Content-type: text/plain; charset=\"" . $this->charset . "\"" . $this->eol;
}
Вот что получаю по мейл, зачем эти шифры
Код:
X-Sendmail-Cmdline: sendmail.pl -t -i
To: *****@****.ru
Subject: =?windows-1251?b?ze7i4P8g7e7i7vHy/CDt4CDs7uTl8OD26Og=?=
MIME-Version: 1.0
Content-type: text/plain; charset="windows-1251"
From: "=?windows-1251?b?V2hpdGUgRGlyZWN0b3J5IG9mIEFydGljbGVz?=" <****@v.ru>