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:
6
mail.php
6
mail.php
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user