Skip to content
Snippets Groups Projects
Commit 7253baf2 authored by aydreeihn's avatar aydreeihn
Browse files

Mailer Typo:

This commit fixes a mistake where a variable was incorrectly set. This in turn fixes the lint tests.
parent c13f6230
No related branches found
No related tags found
No related merge requests found
......@@ -655,7 +655,7 @@ class EmailDataParser {
//Skip virtual Delivered-To addresses
if ($source == 'delivered-to') continue;
$name = $this->mime_decode(@$addr->personal);
$name = trim(@$addr->personal, '"');
$email = strtolower($addr->mailbox).'@'.$addr->host;
$data['recipients'][] = array(
'source' => sprintf(_S("Email (%s)"), $source),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment