Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/PHPMailer/PHPMailer
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed May 2, 2014
2 parents e6d7f38 + c7bec0c commit 44d33d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions class.phpmailer.php
Expand Up @@ -1633,10 +1633,10 @@ public function createHeader()
$this->boundary[3] = 'b3_' . $uniq_id;

if ($this->MessageDate == '') {
$result .= $this->headerLine('Date', self::rfcDate());
} else {
$result .= $this->headerLine('Date', $this->MessageDate);
$this->MessageDate = self::rfcDate();
}
$result .= $this->headerLine('Date', $this->MessageDate);


// To be created automatically by mail()
if ($this->SingleTo === true) {
Expand Down

0 comments on commit 44d33d8

Please sign in to comment.