Тип содержания для почты

This commit is contained in:
origami11 2017-02-09 14:21:47 +03:00
parent 5dac5a6e19
commit 541520fa4a
2 changed files with 8 additions and 1 deletions

View file

@ -201,6 +201,7 @@ class PDODatabaseStatement extends PDOStatement implements IteratorAggregate
{
protected $cursorPos = 0;
public $cache = array();
public $fields;
function getIterator()
{

View file

@ -17,6 +17,7 @@ class Mail
protected $attachment = array ();
protected $uniqid;
protected $type = "text/plain";
function __construct() {
$this->setEncoding("UTF-8");
@ -70,6 +71,11 @@ class Mail
$this->content = $text;
}
function setType($type)
{
$this->type = $type;
}
/**
* Кодировка текста в письме
*/
@ -134,7 +140,7 @@ class Mail
function getMessage()
{
$message = "--".$this->uniqid . PHP_EOL;
$message .= $this->mimeTag("Content-Type", "text/plain", array ('charset' => $this->encoding));
$message .= $this->mimeTag("Content-Type", $this->type, array ('charset' => $this->encoding));
$message .= $this->mimeTag("Content-Transfer-Encoding", "8bit");
$message .= PHP_EOL . $this->content . PHP_EOL . PHP_EOL;