blob: 3c055d98789432499f9757c73d6f59404d23e0ab [file]
<?php
class RFC822Digest extends ezcMailPart
{
private $mail = null;
public function __construct( ezcMail $mail )
{
$this->mail = $mail;
$this->setHeader( 'Content-Type', 'message/rfc822' );
$this->setHeader( 'Content-Disposition', 'inline' );
}
public function generateBody()
{
return $this->mail->generate();
}
}
?>