diff --git a/www/framework/mail/composer.json b/www/framework/mail/composer.json index 3a54280d6..a233c9bee 100644 --- a/www/framework/mail/composer.json +++ b/www/framework/mail/composer.json @@ -1,7 +1,7 @@ { "name": "depage/mail", "description": "depage-mail is a small simple mail generator and sender and a more convinient wrapper for the mail() function, when something bigger is unnecessary or not required.", - "version": "1.4.0", + "version": "1.4.1", "type": "library", "keywords": [ "mail", diff --git a/www/framework/mail/mail.php b/www/framework/mail/mail.php index 5587dfd36..1097aa514 100644 --- a/www/framework/mail/mail.php +++ b/www/framework/mail/mail.php @@ -261,7 +261,7 @@ public function getHeaders() { if ($this->bcc != "") { $headers .= "BCC: " . $this->normalizeRecipients($this->bcc) . $this->eol; } - $headers .= "X-Mailer: depage-mail (1.4.0){$this->eol}"; + $headers .= "X-Mailer: depage-mail (1.4.1){$this->eol}"; if (count($this->attachements) == 0 && empty($this->htmlText)) { $headers .= "Content-type: text/plain; charset={$this->encoding}{$this->eol}" .