Added SetMessageId for forward compatibility with SwiftMailer

SVN:1.2[1785]
This commit is contained in:
Denis Flaven
2012-01-18 10:05:12 +00:00
parent 3f381a3530
commit 2a155fe8ee

View File

@@ -144,6 +144,11 @@ class EMail
$this->m_aHeaders[$sKey] = $sValue;
}
}
public function SetMessageId($sId)
{
$this->AddToHeader('Message-ID', $sId);
}
public function SetReferences($sReferences)
{