mail: Remove the not needed CR in getDetails

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3712 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2017-05-20 19:17:36 +00:00
parent 0b2d566c9f
commit aabb3a8e98

View File

@@ -1308,19 +1308,19 @@ class mail
$attachmentInlineDetails[$i] = $this->getAttachmentDetails($i, true);
unset ($i);
$size = strlen ($this->getMail());
$from = $this->getHeader ("From");
$from = trim ($this->getHeader ("From"));
if ($from !== false)
{
$fromArray = $this->convertPeopleToArray (
$this->decodeHeaders ("From", $from));
}
$to = $this->getHeader ("To");
$to = trim ($this->getHeader ("To"));
if ($to !== false)
{
$toArray = $this->convertPeopleToArray (
$this->decodeHeaders ("To", $to));
}
$date = $this->getDate ();
$date = trim ($this->getDate ());
$dateTimestamp = $this->getDateTimestamp ();
$subject = $this->getHeaderValue ("Subject");
return get_defined_vars();