Skip to content

Commit

Permalink
Newsletter Email fix
Browse files Browse the repository at this point in the history
Fix #5898
  • Loading branch information
inettman authored Aug 26, 2016
1 parent 9a4a7eb commit 9b7dd77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/Magento/Newsletter/Model/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public function sendPerSubscriber($count = 20)
)->setTemplateVars(
['subscriber' => $item]
)->setFrom(
['name' => $this->getNewsletterSenderEmail(), 'email' => $this->getNewsletterSenderName()]
['name' => $this->getNewsletterSenderName(), 'email' => $this->getNewsletterSenderEmail()]
)->addTo(
$item->getSubscriberEmail(),
$item->getSubscriberFullName()
Expand Down

0 comments on commit 9b7dd77

Please sign in to comment.