Skip to content

Commit

Permalink
bumper version number of depage-mail
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasjonas committed Oct 3, 2013
1 parent 5d87701 commit 66bf6d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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",
Expand Down
2 changes: 1 addition & 1 deletion www/framework/mail/mail.php
Expand Up @@ -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}" .
Expand Down

0 comments on commit 66bf6d6

Please sign in to comment.